Refactor settings to use stack to allow dark theme. Move theme to app reducer to allow persistence.
This commit is contained in:
@@ -26,3 +26,8 @@ export const selectDeleteAfterUpload = createSelector(
|
||||
[selectApp],
|
||||
(app) => app.deleteAfterUpload
|
||||
);
|
||||
|
||||
export const selectTheme = createSelector(
|
||||
[selectApp],
|
||||
(app) => app.theme
|
||||
);
|
||||
Reference in New Issue
Block a user