Fixup theme selector App name

This commit is contained in:
bakerboy448 2025-10-01 10:21:22 -05:00 committed by GitHub
parent 160320f3a2
commit 98608e75a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ import themes from 'Styles/Themes';
function createThemeSelector() {
return createSelector(
(state: AppState) => state.settings.ui.item.theme || window.Radarr.theme,
(state: AppState) => state.settings.ui.item.theme || window.Prowlarr.theme,
(theme) => theme
);
}