From 4677d3e1a6cdacb0db24726d2bd2ac50ec65b1cf Mon Sep 17 00:00:00 2001 From: Shlee Date: Sat, 31 Jan 2026 18:02:32 +1030 Subject: [PATCH] Update notifications.js --- resources/js/stores/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/stores/notifications.js b/resources/js/stores/notifications.js index 53b9448dd..d4610c607 100644 --- a/resources/js/stores/notifications.js +++ b/resources/js/stores/notifications.js @@ -54,7 +54,7 @@ export const useNotificationStore = defineStore('notifications', () => { if (cursor) { params.cursor = cursor } else { - await fetchUnreadCount(type) + await fetchUnreadCount() } const response = await axios.get('/api/v1/account/notifications', { params })