Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcramer committed Aug 30, 2024
1 parent 8f15fe1 commit dee7eff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/swap/components/SwapSettingsSlippageDescription.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('SwapSettingsSlippageDescription', () => {
);
const paragraph = screen.getByText('Test');
expect(paragraph.className).toContain(
'mb-2 font-normal font-sans text-ock-foreground-muted" text-xs leading-4 ',
'mb-2 font-normal font-sans text-ock-foreground-muted text-xs leading-4',
);
});

Expand All @@ -35,7 +35,7 @@ describe('SwapSettingsSlippageDescription', () => {
const paragraph = screen.getByText('Test');
expect(paragraph.className).toContain('custom-class');
expect(paragraph.className).toContain(
'mb-2 font-normal font-sans text-ock-foreground-muted" text-xs leading-4 ',
'mb-2 font-normal font-sans text-ock-foreground-muted text-xs leading-4',
);
});

Expand Down
2 changes: 1 addition & 1 deletion src/swap/components/SwapSettingsSlippageDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function SwapSettingsSlippageDescription({
return (
<p
className={cn(
'mb-2 font-normal font-sans text-ock-foreground-muted" text-xs leading-4',
'mb-2 font-normal font-sans text-ock-foreground-muted text-xs leading-4',
className,
)}
>
Expand Down

0 comments on commit dee7eff

Please sign in to comment.