From ee2e78228edfefce172e5ef60116ecf2cc7630bf Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sun, 30 Apr 2023 21:59:14 +0800 Subject: [PATCH] Fix notifications not refreshing and not clearing "new" Still quite clunky, but let's see --- src/pages/home.jsx | 67 +++++++++++++++++++++++----------------------- 1 file changed, 34 insertions(+), 33 deletions(-) diff --git a/src/pages/home.jsx b/src/pages/home.jsx index f929ddee..af6ac038 100644 --- a/src/pages/home.jsx +++ b/src/pages/home.jsx @@ -34,9 +34,6 @@ function Home() { })(); }, []); - const notificationLinkRef = useRef(); - const [menuState, setMenuState] = useState(undefined); - return ( <> {(snapStates.settings.shortcutsColumnsMode || @@ -49,34 +46,7 @@ function Home() { path="/" id="home" headerStart={false} - headerEnd={ - <> - { - e.stopPropagation(); - if (window.matchMedia('(min-width: calc(40em))').matches) { - e.preventDefault(); - setMenuState((state) => { - console.log('state', state, !state ? 'open' : undefined); - return !state ? 'open' : undefined; - }); - } - }} - > - - - setMenuState(undefined)} - /> - - } + headerEnd={} /> )}