Skip to content

Commit

Permalink
fix: Lint with biome
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroWave022 committed Sep 19, 2024
1 parent 80b1b0b commit 5b44dc5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/[locale]/(default)/storage/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import {
} from '@/components/ui/Tooltip';
import { ShoppingCart } from 'lucide-react';

import { Link } from '@/lib/locale/navigation';
import { CategorySelector } from '@/components/storage/CategorySelector';
import { SortSelector } from '@/components/storage/SortSelector';
import { Link } from '@/lib/locale/navigation';

export async function generateMetadata({
params: { locale },
Expand Down
4 changes: 2 additions & 2 deletions src/components/ui/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const FormDescription = React.forwardRef<
<p
ref={ref}
id={formDescriptionId}
className={cx('text-sm text-muted-foreground', className)}
className={cx('text-muted-foreground text-sm', className)}
{...props}
/>
);
Expand All @@ -158,7 +158,7 @@ const FormMessage = React.forwardRef<
<p
ref={ref}
id={formMessageId}
className={cx('text-sm font-medium text-destructive', className)}
className={cx('font-medium text-destructive text-sm', className)}
{...props}
>
{body}
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/Label.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as React from 'react';
import { cx } from '@/lib/utils';

const labelVariants = cva({
base: 'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70',
base: 'font-medium text-sm leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70',
});

const Label = React.forwardRef<
Expand Down

0 comments on commit 5b44dc5

Please sign in to comment.