diff --git a/src/Pages/Layout.tsx b/src/Pages/Layout.tsx index 3fc74db..da6c410 100644 --- a/src/Pages/Layout.tsx +++ b/src/Pages/Layout.tsx @@ -35,7 +35,7 @@ export default function Layout() { useLoginFeed(); const shouldHideNoteCreator = useMemo(() => { - const hideNoteCreator = ["/settings"] + const hideNoteCreator = ["/settings", "/messages", "/new"] return hideNoteCreator.some(a => location.pathname.startsWith(a)); }, [location]);