From 9aa2ca04ecccfc05b0c063758dcd4748de5a2187 Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Sat, 29 Mar 2025 11:39:24 -0500 Subject: [PATCH] okay? --- components/provider.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/provider.tsx b/components/provider.tsx index cd66e565..37b4e142 100644 --- a/components/provider.tsx +++ b/components/provider.tsx @@ -6,8 +6,8 @@ import { CarPlayInterface, NowPlayingTemplate, TabBarTemplate } from "react-nati // 'react-native-carplay' has also been disabled for android builds in react-native.config.js const CarPlay = Platform.OS === 'ios' ? require('react-native-carplay').CarPlay as CarPlayInterface : null; -const CarPlayNavigation = !!CarPlay ? require('./CarPlay/Navigation').CarPlayNavigation : null; -const CarPlayNowPlaying = !!CarPlay ? require('./CarPlay/NowPlaying').CarPlayNowPlaying : null +const CarPlayNavigation = !!CarPlay ? require('./CarPlay/Navigation') : null; +const CarPlayNowPlaying = !!CarPlay ? require('./CarPlay/NowPlaying') : null interface JellifyContext { loggedIn: boolean;