Handle invalid theme in ui state (#1504)

This commit is contained in:
Steve Richter 2022-01-05 18:47:14 -05:00 committed by GitHub
parent 910091f1f1
commit 8c707b4e0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ const useCurrentTheme = () => {
return prefersLightMode ? themes.LightTheme : themes.DarkTheme
}
const themeName =
state.theme ||
Object.keys(themes).find((t) => t === state.theme) ||
Object.keys(themes).find(
(t) => themes[t].themeName === config.defaultTheme
) ||