Skip to content

Commit 8d158c0

Browse files
small theming bugfix
1 parent 4017153 commit 8d158c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/contexts/ThemeContext.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function ThemeProvider({ children }) {
1616
if (storedTheme) {
1717
_setTheme(JSON.parse(storedTheme));
1818
} else {
19-
_setTheme(THEMES.DEFAULT);
19+
_setTheme(initialState.theme);
2020
}
2121
setReady(true);
2222
}, []);

0 commit comments

Comments
 (0)