From a505fbdead3468c08c610b728a13b41a6ae541d9 Mon Sep 17 00:00:00 2001 From: NathanosDev Date: Thu, 2 Jan 2025 15:54:16 +0100 Subject: [PATCH] fix: update idl timeout in example to 2 minutes --- example/frontend/src/app/app.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/frontend/src/app/app.config.ts b/example/frontend/src/app/app.config.ts index b2cc6ee..1fd655a 100644 --- a/example/frontend/src/app/app.config.ts +++ b/example/frontend/src/app/app.config.ts @@ -10,7 +10,7 @@ export const APP_CONFIG: ApplicationConfig = { }), provideIcAuth({ identityProvider: environment.IDENTITY_PROVIDER, - idlOptions: { idleTimeout: 1_000 * 60 }, // 1 minute + idlOptions: { idleTimeout: 2 * 1_000 * 60 }, // 2 minutes maxTimeToLive: BigInt(1_000 * 2), // 2 seconds }), ],