Skip to content

Commit 178ef24

Browse files
Testing for chapgpt integrations
1 parent 416139e commit 178ef24

File tree

1 file changed

+2
-2
lines changed
  • src/components/global/infobar/notifications

1 file changed

+2
-2
lines changed

src/components/global/infobar/notifications/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { useRouter } from "next/navigation";
66

77
export const Notifications = ({ slug }: { slug: string }) => {
88
const router = useRouter();
9-
const { notification } = useUserUnseenNotifications();
10-
const unSeenNotification = notification?.filter((n) => n.isSeen == false);
9+
const { notifications } = useUserUnseenNotifications();
10+
const unSeenNotification = notifications?.filter((n) => n.isSeen == false);
1111

1212
return (
1313
<Button

0 commit comments

Comments
 (0)