Skip to content

Commit

Permalink
fix: the oidc silent token renew should e enabled by default
Browse files Browse the repository at this point in the history
KK-1217
  • Loading branch information
nikomakela committed Sep 10, 2024
1 parent 5cef10a commit 1cbd0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/application/AppConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class AppConfig {
* */
static get oidcAutomaticSilentRenew(): boolean {
return Boolean(
process.env.REACT_APP_OIDC_AUTOMATIC_SILENT_RENEW_ENABLED ?? false
process.env.REACT_APP_OIDC_AUTOMATIC_SILENT_RENEW_ENABLED ?? true
);
}

Expand Down

0 comments on commit 1cbd0eb

Please sign in to comment.