Skip to content

Commit

Permalink
fix: remove unused docs variable in UserMenu
Browse files Browse the repository at this point in the history
  • Loading branch information
simonseyock committed Sep 2, 2024
1 parent e8988e1 commit b7e26ac
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/components/UserMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,25 +143,6 @@ export const UserMenu: React.FC<UserProps> = (): JSX.Element => {
)
};

const docs: ItemType = {
key: 'docs',
icon: (
<FontAwesomeIcon
icon={faCircleQuestion}
/>
),
label: (
<Button
type='text'
className="user-documentation"
aria-label='user-documentation'
onClick={() => window.open('/gis-docs', '_blank')}
>
{t('UserMenu.helpMenuTitle')}
</Button>
)
};

const logout: ItemType = {
key: 'logout',
icon: (
Expand Down

0 comments on commit b7e26ac

Please sign in to comment.