From 4b8e13055bc9093ab07fc8e790052b44a9c4e3ed Mon Sep 17 00:00:00 2001 From: Dominik Zborowski Date: Fri, 25 Oct 2024 16:00:38 +0200 Subject: [PATCH] Extend session time --- shared/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/config.ts b/shared/config.ts index 452e1bbe..b4e5cbfb 100644 --- a/shared/config.ts +++ b/shared/config.ts @@ -8,7 +8,7 @@ export const SUPPORTED_NETWORK_IDS = ['mainnet', 'testnet'] as const export const MODAL_DEFAULT_TEMPLATE = 'Default' // connection expiry time -export const CONNECTION_EXPIRY_TIME_MS = 1000 * 60 * 60 * 2 // 2 hours +export const CONNECTION_EXPIRY_TIME_MS = 1000 * 60 * 60 * 24 // 24 hours // interval to check if the user is still connected export const CONNECTION_EXPIRY_CHECK_INTERVAL_MS = 1000 * 10 // 10 seconds