Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
He1DAr committed Feb 27, 2024
1 parent ff3e8b6 commit c7c4211
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/signers/PageClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function ({ tokenPrice }: { tokenPrice: TokenPrice }) {
<Flex justifyContent={'space-between'} alignItems={'flex-end'}>
<PageTitle>Signers</PageTitle>
</Flex>
<SignersHeaderWithErrorBoundary tokenPrice={tokenPrice}/>
<SignersHeaderWithErrorBoundary tokenPrice={tokenPrice} />
<SignersTable />
</>
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/signers/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import dynamic from 'next/dynamic';

Check warning on line 1 in src/app/signers/page.tsx

View check run for this annotation

Codecov / codecov/patch

src/app/signers/page.tsx#L1

Added line #L1 was not covered by tests

import Skeleton from './skeleton';
import { getTokenPrice } from '../getTokenPriceInfo';
import Skeleton from './skeleton';

Check warning on line 4 in src/app/signers/page.tsx

View check run for this annotation

Codecov / codecov/patch

src/app/signers/page.tsx#L3-L4

Added lines #L3 - L4 were not covered by tests

const Page = dynamic(() => import('./PageClient'), {
loading: () => <Skeleton />,

Check warning on line 7 in src/app/signers/page.tsx

View check run for this annotation

Codecov / codecov/patch

src/app/signers/page.tsx#L6-L7

Added lines #L6 - L7 were not covered by tests
Expand Down

0 comments on commit c7c4211

Please sign in to comment.