Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
Don't disable settings if Firebase key is not provided
Browse files Browse the repository at this point in the history
  • Loading branch information
curtgrimes committed Oct 31, 2023
1 parent 97511bc commit 61e1fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const state = () => ({
uid: null,
shouldSaveSettingsOnNextSignIn: false,
},
settingsLoaded: false,
settingsLoaded: false || !process.env.FIREBASE_API_KEY,
settings: {
...getSettingsState(),
},
Expand Down

0 comments on commit 61e1fb3

Please sign in to comment.