Browse Source

Fix notifications (#4293)

Bartosz Dryl 1 year ago
parent
commit
931f9ba7de
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/atlas/src/providers/notifications/notifications.hooks.ts

+ 1 - 1
packages/atlas/src/providers/notifications/notifications.hooks.ts

@@ -18,7 +18,7 @@ export const useNotifications = (
   opts?: QueryHookOptions<GetNotificationsConnectionQuery, GetNotificationsConnectionQueryVariables>
 ) => {
   const { memberId } = useUser()
-  const { notifications: rawNotifications, ...rest } = useRawNotifications('111', opts)
+  const { notifications: rawNotifications, ...rest } = useRawNotifications(memberId, opts)
   const {
     readNotificationsIdsMap,
     lastSeenNotificationBlock,