disable notification graph in iris

This commit is contained in:
Martti Malmi
2023-12-18 17:04:35 +02:00
parent 509c1664c1
commit be3f46c7f1
4 changed files with 10 additions and 5 deletions

View File

@ -98,9 +98,11 @@ export default function NotificationsPage({ onClick }: { onClick?: (link: NostrL
return (
<>
<div className="main-content">
<Suspense fallback={<PageSpinner />}>
<NotificationGraph evs={myNotifications} />
</Suspense>
{CONFIG.features.notificationGraph && (
<Suspense fallback={<PageSpinner />}>
<NotificationGraph evs={myNotifications} />
</Suspense>
)}
{login.publicKey &&
[...timeGrouped.entries()]
.slice(0, showN)