Skip to content

Commit

Permalink
Fix: remove extra |
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderleegs committed Aug 22, 2022
1 parent 4e15fa1 commit 72793f6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,7 @@ export const Sidebar = (): JSX.Element => {
</SidebarButton>
<Box px="1rem" textColor="text.link.disabled" textAlign="left" w="100%">
<Text textStyle="body-1">Logged in as</Text>
<Text textStyle="body-1">
{`${userId ? "@" : ""}${accountName}`}|
</Text>
<Text textStyle="body-1">{`${userId ? "@" : ""}${accountName}`}</Text>
</Box>
</VStack>
</Flex>
Expand Down

0 comments on commit 72793f6

Please sign in to comment.