Browse Source

remove btn title

AykutSarac 2 years ago
parent
commit
c2bd77294c
1 changed files with 1 additions and 4 deletions
  1. 1 4
      src/components/Sidebar/index.tsx

+ 1 - 4
src/components/Sidebar/index.tsx

@@ -231,10 +231,7 @@ export const Sidebar: React.FC = () => {
           className="desktop"
           title={graphCollapsed ? "Expand Graph" : "Collapse Graph"}
         >
-          <StyledElement
-            title="Expand/Collapse Graph"
-            onClick={toggleExpandCollapseGraph}
-          >
+          <StyledElement onClick={toggleExpandCollapseGraph}>
             {graphCollapsed ? <CgArrowsShrinkV /> : <CgArrowsMergeAltV />}
           </StyledElement>
         </Tooltip>