From 20a498648b80b145cf8e3aba3d658821358042ad Mon Sep 17 00:00:00 2001 From: Martti Malmi Date: Mon, 21 Aug 2023 17:49:46 +0300 Subject: [PATCH] notifications view sidebar --- src/js/views/feeds/Notifications.tsx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/js/views/feeds/Notifications.tsx b/src/js/views/feeds/Notifications.tsx index a6b788f3..5f0ff597 100644 --- a/src/js/views/feeds/Notifications.tsx +++ b/src/js/views/feeds/Notifications.tsx @@ -6,6 +6,7 @@ import EventDB from '@/nostr/EventDB'; import Events from '@/nostr/Events'; import Key from '@/nostr/Key'; import { RouteProps } from '@/views/types.ts'; +import View from '@/views/View.tsx'; import Feed from '../../components/feed/Feed'; import Session from '../../nostr/Session'; @@ -60,13 +61,15 @@ const Notifications: React.FC = () => { }, [updateNotificationsLastOpened]); return ( - + + + ); };