diff --git a/apps/mobile/src/screens/Dapps/hooks/useDappView.ts b/apps/mobile/src/screens/Dapps/hooks/useDappView.ts index 88c352687..6da26346e 100644 --- a/apps/mobile/src/screens/Dapps/hooks/useDappView.ts +++ b/apps/mobile/src/screens/Dapps/hooks/useDappView.ts @@ -60,11 +60,13 @@ export type OpenedDappItem = { }; const DAPPS_VIEW_LIMIT = { maxCount: 3, - expireDuration: 86400 * 1e3 * 3, + // 30days + expireDuration: 3 * 86400 * 1e3, }; const DAPPS_VIEW_LIMIT_SHORT = { maxCount: 3, - expireDuration: 600 * 1e3, + // 20mins + expireDuration: 20 * 60 * 1e3, }; const dappsViewConfigAtom = atom({ maxCount: DAPPS_VIEW_LIMIT.maxCount,