diff --git a/bun.lockb b/bun.lockb index cc7295d..f99eb7d 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/src/app/[locale]/(default)/storage/page.tsx b/src/app/[locale]/(default)/storage/page.tsx index 37150b4..65f8230 100644 --- a/src/app/[locale]/(default)/storage/page.tsx +++ b/src/app/[locale]/(default)/storage/page.tsx @@ -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 }, diff --git a/src/components/ui/Form.tsx b/src/components/ui/Form.tsx index e4c37de..c945d9f 100644 --- a/src/components/ui/Form.tsx +++ b/src/components/ui/Form.tsx @@ -136,7 +136,7 @@ const FormDescription = React.forwardRef<

); @@ -158,7 +158,7 @@ const FormMessage = React.forwardRef<

{body} diff --git a/src/components/ui/Label.tsx b/src/components/ui/Label.tsx index 0fe725c..cc8890c 100644 --- a/src/components/ui/Label.tsx +++ b/src/components/ui/Label.tsx @@ -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<