diff --git a/src/app/components/ui/Badge.tsx b/src/app/components/ui/Badge.tsx index cacfbb1971..10a0e1b0fd 100644 --- a/src/app/components/ui/Badge.tsx +++ b/src/app/components/ui/Badge.tsx @@ -1,5 +1,5 @@ import { type VariantProps, cva } from "class-variance-authority"; -import { cn } from "lib/cn"; +import { cn } from "lib/cssUtils"; import { type ElementRef, type HTMLAttributes, forwardRef } from "react"; export const badgeVariants = cva( diff --git a/src/app/components/ui/Card.tsx b/src/app/components/ui/Card.tsx index a9731698f6..20840f8466 100644 --- a/src/app/components/ui/Card.tsx +++ b/src/app/components/ui/Card.tsx @@ -1,4 +1,4 @@ -import { cn } from "lib/cn"; +import { cn } from "lib/cssUtils"; import { type HTMLAttributes, forwardRef } from "react"; const Card = forwardRef>(