diff options
author | Hailey <me@haileyok.com> | 2024-05-17 09:23:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-17 09:23:46 -0700 |
commit | 5e312d5f3a7796b38d31836461e07bfae7f36129 (patch) | |
tree | bffd3338c7452e487a793df28184431e21ffb756 /src/lib/hooks/useNotificationHandler.ts | |
parent | dd4c8d8e4f5c5d84f11fe2412b3a2fa8f5d21157 (diff) | |
download | voidsky-5e312d5f3a7796b38d31836461e07bfae7f36129.tar.zst |
[🐴] Don't always show notification for everything (#4083)
* don't always show a notification * nit
Diffstat (limited to 'src/lib/hooks/useNotificationHandler.ts')
-rw-r--r-- | src/lib/hooks/useNotificationHandler.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hooks/useNotificationHandler.ts b/src/lib/hooks/useNotificationHandler.ts index e288ac3ad..3f1cd439d 100644 --- a/src/lib/hooks/useNotificationHandler.ts +++ b/src/lib/hooks/useNotificationHandler.ts @@ -41,7 +41,7 @@ type NotificationPayload = } const DEFAULT_HANDLER_OPTIONS = { - shouldShowAlert: true, + shouldShowAlert: false, shouldPlaySound: false, shouldSetBadge: true, } |