Skip to content

Commit

Permalink
fix: update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-stumpf committed Nov 19, 2024
1 parent 8e27201 commit 4f429c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/components/ui/Badge.tsx
Original file line number Diff line number Diff line change
@@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/ui/Card.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cn } from "lib/cn";
import { cn } from "lib/cssUtils";
import { type HTMLAttributes, forwardRef } from "react";

const Card = forwardRef<HTMLDivElement, HTMLAttributes<HTMLDivElement>>(
Expand Down

0 comments on commit 4f429c6

Please sign in to comment.