Skip to content

Commit

Permalink
flag to disable maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
axelrod-blox committed Aug 12, 2024
1 parent a6c664e commit 2471bb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/common/stores/Application.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ApplicationStore extends BaseStore {
constructor() {
super();
const darkModeSaved = this.localStorage.getItem('isDarkMode');
this.isMaintenancePage = true;
this.isMaintenancePage = !this.localStorage.getItem('isMaintenancePage');
if (darkModeSaved) {
this.darkMode = darkModeSaved === '1';
this.switchDarkMode(this.darkMode);
Expand Down

0 comments on commit 2471bb8

Please sign in to comment.