From f62fe6d941c3b7680c309a224caacb0dde686e32 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Wed, 5 Apr 2023 16:33:44 +0900 Subject: [PATCH] fix "hide all notifications" bug closes #1541 --- src/components/Settings.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Settings.jsx b/src/components/Settings.jsx index b6f1c5fb..2a57def3 100644 --- a/src/components/Settings.jsx +++ b/src/components/Settings.jsx @@ -286,7 +286,7 @@ const Settings = memo(({ {t('Show informational notifications')} - setHideNotifications(v ? 'all' : undefined)} /> + setHideNotifications(v ? undefined : 'all')} />