Skip to content

Commit cbd9414

Browse files
committed
changed @ reference
1 parent b8621d6 commit cbd9414

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"eslint-plugin-react-refresh": "^0.4.19",
4141
"globals": "^15.15.0",
4242
"typescript": "~5.7.2",
43-
"typescript-eslint": "^8.24.1",
43+
"typescript-eslixnt": "^8.24.1",
4444
"vite": "^6.2.0"
4545
}
4646
}

src/components/ui/card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from "react"
22

3-
import { cn } from "@/lib/utils"
3+
import { cn } from "@/lib/utils.ts"
44

55
function Card({ className, ...props }: React.ComponentProps<"div">) {
66
return (

src/components/ui/form.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import {
1111
type FieldValues,
1212
} from "react-hook-form"
1313

14-
import { cn } from "@/lib/utils"
15-
import { Label } from "@/components/ui/label"
14+
import { cn } from "@/lib/utils.ts"
15+
import { Label } from "@/components/ui/label.tsx"
1616

1717
const Form = FormProvider
1818

src/components/ui/input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as React from "react"
22

3-
import { cn } from "@/lib/utils"
3+
import { cn } from "@/lib/utils.ts"
44

55
function Input({ className, type, ...props }: React.ComponentProps<"input">) {
66
return (

src/components/ui/label.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
import * as React from "react"
44
import * as LabelPrimitive from "@radix-ui/react-label"
5+
import { cva, type VariantProps } from "class-variance-authority"
56

6-
import { cn } from "@/lib/utils"
7+
import { cn } from "@/lib/utils.ts"
78

89
function Label({
910
className,

0 commit comments

Comments
 (0)