Skip to content

Commit

Permalink
Change default update to 5 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncox committed Feb 23, 2025
1 parent 18a3961 commit 0622519
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/[network]/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@
});
// Number of ms between network updates
const ACCOUNT_UPDATE_INTERVAL = Number(env.PUBLIC_ACCOUNT_UPDATE_INTERVAL) || 3_000;
const NETWORK_UPDATE_INTERVAL = Number(env.PUBLIC_NETWORK_UPDATE_INTERVAL) || 3_000;
const ACCOUNT_UPDATE_INTERVAL = Number(env.PUBLIC_ACCOUNT_UPDATE_INTERVAL) || 5_000;
const NETWORK_UPDATE_INTERVAL = Number(env.PUBLIC_NETWORK_UPDATE_INTERVAL) || 5_000;
// Default to not show a banner (avoids flash of banner when hidden)
let showBanner = $state(false);
Expand Down

0 comments on commit 0622519

Please sign in to comment.