From ba475831219cd49ce61871221effa685a287aa24 Mon Sep 17 00:00:00 2001 From: Svilen Petrov Date: Wed, 1 Apr 2026 05:43:12 +0100 Subject: [PATCH 1/4] Fix sidebar logo navigation to threads home --- apps/web/src/components/Sidebar.tsx | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx index 1b43eb4c18..09ce7aaaf5 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -270,7 +270,9 @@ export default function Sidebar() { (store) => store.clearProjectDraftThreadById, ); const navigate = useNavigate(); - const isOnSettings = useLocation({ select: (loc) => loc.pathname === "/settings" }); + const pathname = useLocation({ select: (loc) => loc.pathname }); + const isOnSettings = pathname === "/settings"; + const isOnThreadsHome = pathname === "/"; const { settings: appSettings } = useAppSettings(); const { handleNewThread } = useHandleNewThread(); const routeThreadId = useParams({ @@ -1106,13 +1108,23 @@ export default function Sidebar() { }); }, []); + const handleWordmarkClick = useCallback(() => { + if (isOnThreadsHome) return; + void navigate({ to: "/" }); + }, [isOnThreadsHome, navigate]); + const wordmark = (
+
+ } /> From 80b6f07ccebb3fb9d249cd6166feaad8411f5836 Mon Sep 17 00:00:00 2001 From: Svilen Petrov Date: Wed, 1 Apr 2026 05:54:51 +0100 Subject: [PATCH 2/4] Restore CLAUDE.md symlink target formatting --- CLAUDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index c317064255..47dc3e3d86 120000 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1 +1 @@ -AGENTS.md +AGENTS.md \ No newline at end of file From e42b6da297d20596380a7129b6feaf408fd3961c Mon Sep 17 00:00:00 2001 From: Svilen Petrov Date: Wed, 1 Apr 2026 06:15:43 +0100 Subject: [PATCH 3/4] Restore pointer cursor on sidebar logo --- apps/web/src/components/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx index 544b4624c8..26cebe737c 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -1953,7 +1953,7 @@ export default function Sidebar() { + } />