From a30176bfc2fdc0bd24ee97818802075e9ecf15a6 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 25 Aug 2026 18:01:07 +0300 Subject: [PATCH] fix marking notification as seen --- src/stores/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/notifications.js b/src/stores/notifications.js index a12ce8133..eb9257602 100644 --- a/src/stores/notifications.js +++ b/src/stores/notifications.js @@ -223,7 +223,7 @@ export const useNotificationsStore = defineStore('notifications', { case 'follow_request': break default: - this.markSingleNotificationAsSeen({ id }) + this.markSingleNotificationAsSeen(id) } } },