From 1b70e90744be4fd9ca92bf41e6f0e4658dd6723a Mon Sep 17 00:00:00 2001 From: Marie Date: Wed, 19 Mar 2025 22:17:06 +0000 Subject: [PATCH] upd: add scheduledNote notification types to only on and off types --- packages/frontend/src/pages/settings/notifications.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/pages/settings/notifications.vue b/packages/frontend/src/pages/settings/notifications.vue index 8ffe0d6a7a..1afdb1e2b7 100644 --- a/packages/frontend/src/pages/settings/notifications.vue +++ b/packages/frontend/src/pages/settings/notifications.vue @@ -80,7 +80,7 @@ const $i = signinRequired(); const nonConfigurableNotificationTypes = ['note', 'roleAssigned', 'followRequestAccepted', 'test', 'exportCompleted'] satisfies (typeof notificationTypes[number])[] as string[]; -const onlyOnOrOffNotificationTypes = ['app', 'achievementEarned', 'login'] satisfies (typeof notificationTypes[number])[] as string[]; +const onlyOnOrOffNotificationTypes = ['app', 'achievementEarned', 'login', 'scheduleNoteFailed', 'scheduledNotePosted'] satisfies (typeof notificationTypes[number])[] as string[]; const allowButton = shallowRef>(); const pushRegistrationInServer = computed(() => allowButton.value?.pushRegistrationInServer);