diff --git a/apps/web/src/views/board/components/List.tsx b/apps/web/src/views/board/components/List.tsx index 0ab53afb..fb19cdfb 100644 --- a/apps/web/src/views/board/components/List.tsx +++ b/apps/web/src/views/board/components/List.tsx @@ -1,17 +1,16 @@ -import { type ReactNode } from "react"; -import { - HiOutlinePlusSmall, - HiEllipsisHorizontal, - HiOutlineTrash, - HiOutlineSquaresPlus, -} from "react-icons/hi2"; +import type { ReactNode } from "react"; import { Draggable } from "react-beautiful-dnd"; import { useForm } from "react-hook-form"; - -import { api } from "~/utils/api"; -import { useModal } from "~/providers/modal"; +import { + HiEllipsisHorizontal, + HiOutlinePlusSmall, + HiOutlineSquaresPlus, + HiOutlineTrash, +} from "react-icons/hi2"; import Dropdown from "~/components/Dropdown"; +import { useModal } from "~/providers/modal"; +import { api } from "~/utils/api"; interface ListProps { children: ReactNode; @@ -80,20 +79,20 @@ export default function List({ {...provided.dragHandleProps} className="dark-text-dark-1000 mr-5 h-fit min-w-[18rem] max-w-[18rem] rounded-md border border-light-400 bg-light-300 py-2 pl-2 pr-1 text-neutral-900 dark:border-dark-300 dark:bg-dark-100" > -