From afc7161b6d135c30a67d94bfd6a1935a409383e9 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 12 Aug 2026 15:59:05 +0300 Subject: [PATCH] merge fix --- src/stores/notifications.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/stores/notifications.js b/src/stores/notifications.js index 27bcc8321..034538dab 100644 --- a/src/stores/notifications.js +++ b/src/stores/notifications.js @@ -75,10 +75,10 @@ export const useNotificationsStore = defineStore('notifications', { return true }) - commit( - 'addNewUsers', - validNotifications.map((notification) => notification.from_profile), - ) + useUsersStore().addNewUsers({ + timestamp, + data: validNotifications.map((notification) => notification.from_profile), + }) const statusNotifications = validNotifications.filter( (notification) =>