diff --git a/src/pages/settings/components/Settings/components/SettingsForm/SettingsForm.tsx b/src/pages/settings/components/Settings/components/SettingsForm/SettingsForm.tsx index 9161f3da8a..9ce009e0aa 100644 --- a/src/pages/settings/components/Settings/components/SettingsForm/SettingsForm.tsx +++ b/src/pages/settings/components/Settings/components/SettingsForm/SettingsForm.tsx @@ -41,9 +41,9 @@ const getInitialValues = ( > | null, ): FormValues => ({ pushNotificationPreference: - data?.pushNotificationPreference ?? UserPushNotificationPreference.None, + data?.pushNotificationPreference ?? UserPushNotificationPreference.All, emailNotificationPreference: - data?.emailNotificationPreference ?? UserEmailNotificationPreference.None, + data?.emailNotificationPreference ?? UserEmailNotificationPreference.All, }); const SettingsForm: FC = (props) => {