Skip to content

Commit

Permalink
Fix Expand Tutorials Menu Arrow Direction (#141)
Browse files Browse the repository at this point in the history
Signed-off-by: Snehil Shah <[email protected]>
  • Loading branch information
Snehil-Shah authored Jan 17, 2024
1 parent 5a6c4eb commit be159fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Sidebar/SidebarTutorialSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const SidebarTutorialSection = ({ isSidebarOpen }) => {
display: isSidebarOpen ? 'block' : 'none',
}}
/>
{isSidebarOpen && (collapsed ? <ExpandLess onClick={handleChange} /> : <ExpandMore onClick={handleChange} />)}
{isSidebarOpen && (collapsed ? <ExpandMore onClick={handleChange} /> : <ExpandLess onClick={handleChange} />)}
</ListItemButton>
</Tooltip>
{isSidebarOpen && (
Expand Down

0 comments on commit be159fa

Please sign in to comment.