From 019664ac7869717e991a6982c809573a96278391 Mon Sep 17 00:00:00 2001 From: Alex Blank Date: Thu, 7 May 2026 23:40:10 +0200 Subject: [PATCH] feat: enable automaticSilentRenew for OIDC token refresh --- frontend/src/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/auth.ts b/frontend/src/auth.ts index b0bcc97..55114f0 100644 --- a/frontend/src/auth.ts +++ b/frontend/src/auth.ts @@ -49,7 +49,7 @@ export function getOidcConfig() { window.location.origin, scope: import.meta.env.VITE_OIDC_SCOPE || "openid profile email", response_type: "code" as const, - automaticSilentRenew: false, + automaticSilentRenew: true, loadUserInfo: true, stateStore: storage, userStore: storage,