Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lsantos1873 committed Dec 15, 2023
1 parent 196fd2e commit 9bf3724
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions packages/yoga/src/NavigationMenu/web/NavigationMenu.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { render } from '@testing-library/react';
import { Help, Doc, MenuMore } from '@gympass/yoga-icons';
import ThemeProvider from '../../Theme';
import Avatar from '../../Avatar';
import AvatarCircle from '../../Avatar/web/AvatarCircle';
import Icon from '../../Icon';

import NavigationMenu from './NavigationMenu';
Expand Down Expand Up @@ -68,7 +68,7 @@ describe('<NavigationMenu />', () => {
>
<NavigationMenu.Header>
<NavigationMenu.Menu
avatar={<Avatar.Circle />}
avatar={<AvatarCircle />}
title="Company"
subtitle="Reseller"
/>
Expand Down Expand Up @@ -103,7 +103,7 @@ describe('<NavigationMenu />', () => {

<NavigationMenu.Footer>
<NavigationMenu.Switcher
avatar={<Avatar.Circle />}
avatar={<AvatarCircle />}
title="User"
subtitle="Admin, Supervisor"
/>
Expand Down Expand Up @@ -133,7 +133,7 @@ describe('<NavigationMenu />', () => {
<NavigationMenu responsive={false}>
<NavigationMenu.Header>
<NavigationMenu.Menu
avatar={<Avatar.Circle />}
avatar={<AvatarCircle />}
title="Company"
subtitle="Reseller"
onClick={() => null}
Expand Down Expand Up @@ -166,7 +166,7 @@ describe('<NavigationMenu />', () => {
<NavigationMenu.Footer>
<NavigationMenu.Switcher
actions={actions}
avatar={<Avatar.Circle />}
avatar={<AvatarCircle />}
sideOffset={36}
subtitle="Admin, Supervisor"
title="User"
Expand Down
1 change: 0 additions & 1 deletion packages/yoga/src/NavigationMenu/web/Switcher/Switcher.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from 'react';
import styled, { css } from 'styled-components';
import { Text, Skeleton } from '@gympass/yoga';
import get from 'lodash.get';
import Actions from './Actions';
import Box from '../../../Box';

Expand Down

0 comments on commit 9bf3724

Please sign in to comment.