diff --git a/web/components/notifications.tsx b/web/components/notifications.tsx index 799db580..7b2e5a29 100644 --- a/web/components/notifications.tsx +++ b/web/components/notifications.tsx @@ -175,17 +175,20 @@ const NotificationOption = (props: { if (!selected) return return ( - -
{question}
- - {SHOWN_NOTIFICATION_DESTINATION_TYPES.map((destinationType) => ( - setValue(checked, destinationType)} - disabled={optOut.includes(destinationType) && type !== 'opt_out_all'} - /> - ))} + <> + {type === 'opt_out_all' &&
} + +
{question}
+ + {SHOWN_NOTIFICATION_DESTINATION_TYPES.map((destinationType) => ( + setValue(checked, destinationType)} + disabled={optOut.includes(destinationType) && type !== 'opt_out_all'} + /> + ))} +
-
+ ) }