diff --git a/apps/mobile/App.js b/apps/mobile/App.js index 221afeb8d..d75a01410 100644 --- a/apps/mobile/App.js +++ b/apps/mobile/App.js @@ -51,7 +51,7 @@ const App = () => { await MMKV.setItem( 'askForRating', JSON.stringify({ - timestamp: Date.now() + 86400000 * 2, + timestamp: Date.now() + (86400000 * 2), }), ); } diff --git a/apps/mobile/src/utils/index.js b/apps/mobile/src/utils/index.js index 3b4779dd0..7e6a1034d 100755 --- a/apps/mobile/src/utils/index.js +++ b/apps/mobile/src/utils/index.js @@ -14,7 +14,7 @@ export const InteractionManager = { runAfterInteractions: (func, time = 150) => setTimeout(func, time), }; -export const APP_VERSION = 1340; +export const APP_VERSION = 1350; export async function setSetting(settings, name, value) { let s = {...settings};