Skip to content

Commit

Permalink
Increased auth check interval
Browse files Browse the repository at this point in the history
  • Loading branch information
pkirilin committed Jan 17, 2024
1 parent 78e3d8c commit aba2ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const API_URL = import.meta.env.VITE_APP_API_URL ?? '';

export const AUTH_CHECK_INTERVAL = import.meta.env.VITE_APP_AUTH_CHECK_INTERVAL
? Number(import.meta.env.VITE_APP_AUTH_CHECK_INTERVAL)
: 60000;
: 3_600_000;

export const MSW_ENABLED = import.meta.env.VITE_APP_MSW_ENABLED === 'true';

Expand Down

0 comments on commit aba2ba2

Please sign in to comment.