Skip to content

Commit 134687d

Browse files
Tooltip text was inverted
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 35da9c6 commit 134687d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/sidebar/view/SecondarySplitHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const ToggleSidebarButton = ({
113113
}, [setIsMac]);
114114
const isSidebarTogglable = useContext(SidebarTogglableContext);
115115
const openCloseKeyboardShortcut = `(${isMac ? "⌘" : "^"} + .)`;
116-
const tooltip = isSidebarOpen ? "Show Projects" : "Hide Projects";
116+
const tooltip = isSidebarOpen ? "Hide Projects" : "Show Projects";
117117
return (
118118
<Box sx={{ display: isSidebarTogglable ? "block" : "none" }}>
119119
<Tooltip title={`${tooltip} ${openCloseKeyboardShortcut}`}>

0 commit comments

Comments
 (0)