diff --git a/app/scenes/Settings/Notifications.tsx b/app/scenes/Settings/Notifications.tsx index 76287e63d..1c1d5bb5b 100644 --- a/app/scenes/Settings/Notifications.tsx +++ b/app/scenes/Settings/Notifications.tsx @@ -139,45 +139,15 @@ function Notifications() { {env.EMAIL_ENABLED ? ( - <> - - - - -

{t("Notifications")}

- - {options.map((option) => { - const setting = user.subscribedToEventType(option.event); - - return ( - - {option.icon} {option.title} - - } - name={option.event} - description={option.description} - > - - - ); - })} - + + + ) : ( @@ -187,6 +157,34 @@ function Notifications() { )} + +

{t("Notifications")}

+ + {options.map((option) => { + const setting = user.subscribedToEventType(option.event); + + return ( + + {option.icon} {option.title} + + } + name={option.event} + description={option.description} + > + + + ); + })} ); }