We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4960a1e commit bf59c7cCopy full SHA for bf59c7c
site/src/modules/dashboard/Navbar/NavbarView.tsx
@@ -67,6 +67,18 @@ export const NavbarView: FC<NavbarViewProps> = ({
67
canViewHealth={canViewHealth}
68
/>
69
70
+ <NotificationsInbox
71
+ fetchNotifications={API.getInboxNotifications}
72
+ markAllAsRead={() => {
73
+ throw new Error("Function not implemented.");
74
+ }}
75
+ markNotificationAsRead={(notificationId) =>
76
+ API.updateInboxNotificationReadStatus(notificationId, {
77
+ is_read: true,
78
+ })
79
+ }
80
+ />
81
+
82
{user && (
83
<UserDropdown
84
user={user}
0 commit comments