From 6039108978af8dad86dc84d875f81ef9db6e48bc Mon Sep 17 00:00:00 2001 From: BinBandit Date: Fri, 20 Mar 2026 15:47:39 +1100 Subject: [PATCH] fix(web): add pointer cursor to add project button The add project button in the sidebar was missing cursor-pointer, causing it to show a default cursor on hover instead of indicating it's clickable. This aligns it with the pattern used by the Button component and other interactive sidebar elements. Co-Authored-By: Claude Opus 4.6 --- 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 bcef110c1b..88f4bd4441 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -1238,7 +1238,7 @@ export default function Sidebar() { type="button" aria-label="Add project" aria-pressed={shouldShowProjectPathEntry} - className="inline-flex size-5 items-center justify-center rounded-md text-muted-foreground/60 transition-colors hover:bg-accent hover:text-foreground" + className="inline-flex size-5 cursor-pointer items-center justify-center rounded-md text-muted-foreground/60 transition-colors hover:bg-accent hover:text-foreground" onClick={handleStartAddProject} /> }