Merge pull request #1365 from spotify/leem/auth-caret

changed  down caret to be up caret on user profile in the sidebar
This commit is contained in:
Lee Mills
2020-06-18 11:30:17 +02:00
committed by GitHub
@@ -104,7 +104,7 @@ export const UserProfile: FC<{ open: boolean; setOpen: Function }> = ({
onClick={handleClick}
icon={avatar || AccountCircleIcon}
>
{open ? <ExpandLess /> : <ExpandMore />}
{open ? <ExpandMore /> : <ExpandLess />}
</SidebarItem>
</>
);