changed down caret to be up caret on user profile in the sidebar

This commit is contained in:
Lee Mills
2020-06-18 11:12:46 +02:00
parent 5d65170597
commit a23c276bb3
@@ -104,7 +104,7 @@ export const UserProfile: FC<{ open: boolean; setOpen: Function }> = ({
onClick={handleClick}
icon={avatar || AccountCircleIcon}
>
{open ? <ExpandLess /> : <ExpandMore />}
{open ? <ExpandMore /> : <ExpandLess />}
</SidebarItem>
</>
);