diff --git a/frontend/src/hooks/useSettings.ts b/frontend/src/hooks/useSettings.ts index b63ceaa..320416c 100644 --- a/frontend/src/hooks/useSettings.ts +++ b/frontend/src/hooks/useSettings.ts @@ -249,11 +249,7 @@ export function useSettings(): UseSettingsReturn { body: JSON.stringify(payload), }).catch(() => null); - const updatedSettings = { - ...settingsToSave, - emailEnabled: effectiveEmailEnabled, - shoutrrrEnabled: effectiveShoutrrrEnabled, - }; + const updatedSettings = { ...settingsToSave }; setSettings(updatedSettings); setSettingsSaving(false); setSavedSettings(updatedSettings); diff --git a/frontend/src/pages/SettingsPage.tsx b/frontend/src/pages/SettingsPage.tsx index e79c661..b332d3c 100644 --- a/frontend/src/pages/SettingsPage.tsx +++ b/frontend/src/pages/SettingsPage.tsx @@ -89,7 +89,7 @@ export function SettingsPage() {