diff --git a/frontend/src/app/components/ui/Input.tsx b/frontend/src/app/components/ui/Input.tsx index 4f6ae3fe..0cc5c360 100644 --- a/frontend/src/app/components/ui/Input.tsx +++ b/frontend/src/app/components/ui/Input.tsx @@ -1,9 +1,6 @@ "use client"; import * as React from "react"; -import { clsx, type ClassValue } from "clsx"; -import { twMerge } from "tailwind-merge"; - import { cn } from "@/app/utils/cn"; export interface InputProps extends React.InputHTMLAttributes { diff --git a/frontend/src/app/components/ui/Modal.tsx b/frontend/src/app/components/ui/Modal.tsx index 082fa779..1b62d2c5 100644 --- a/frontend/src/app/components/ui/Modal.tsx +++ b/frontend/src/app/components/ui/Modal.tsx @@ -2,8 +2,6 @@ import * as React from "react"; import { X } from "lucide-react"; -import { clsx, type ClassValue } from "clsx"; -import { twMerge } from "tailwind-merge"; import { motion, AnimatePresence } from "framer-motion"; import { useModalFocusTrap } from "../../hooks/useModalFocusTrap";