diff --git a/utils/atoms/settings.ts b/utils/atoms/settings.ts index 80dfd624..84f926e0 100644 --- a/utils/atoms/settings.ts +++ b/utils/atoms/settings.ts @@ -21,7 +21,11 @@ const loadSettings = async (): Promise => { const jsonValue = await AsyncStorage.getItem("settings"); return jsonValue != null ? JSON.parse(jsonValue) - : { theme: "light", notificationsEnabled: true, language: "en" }; + : { + autoRotate: true, + forceLandscapeInVideoPlayer: false, + openFullScreenVideoPlayerByDefault: false, + }; }; // Utility function to save settings to AsyncStorage