diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx index 73be095..561fa63 100644 --- a/app/(tabs)/index.tsx +++ b/app/(tabs)/index.tsx @@ -4,7 +4,6 @@ import { useSafeAreaInsets } from 'react-native-safe-area-context'; import { getPrayerTimes, cities } from '../../utils/prayerTimeCalculator'; import i18n from '../../i18n'; -import { useColorScheme } from 'react-native'; import Colors from '../../constants/Colors'; type Prayer = { @@ -15,7 +14,7 @@ type Prayer = { type City = keyof typeof cities; export default function TabIndex() { - const colorScheme = useColorScheme(); + const colorScheme = 'dark'; const theme = Colors[colorScheme ?? 'light']; const [selectedCity, setSelectedCity] = useState('Makkah'); const [prayerTimes, setPrayerTimes] = useState([]); diff --git a/app/(tabs)/services.tsx b/app/(tabs)/services.tsx index 130ab44..25bd97f 100644 --- a/app/(tabs)/services.tsx +++ b/app/(tabs)/services.tsx @@ -24,12 +24,12 @@ export default function ServicesScreen() { icon: , onPress: () => setCurrencyModalVisible(true), }, - { - title: i18n.t('Hotel'), - name: 'hotelCard', - icon: , - onPress: () => setHotelModalVisible(true), - }, + // { + // title: i18n.t('Hotel'), + // name: 'hotelCard', + // icon: , + // onPress: () => setHotelModalVisible(true), + // }, { title: i18n.t('Lost room key'), name: 'lostKey',