diff --git a/app/components/organisms/ItemAssign.tsx b/app/components/molecules/ItemAssign.tsx similarity index 100% rename from app/components/organisms/ItemAssign.tsx rename to app/components/molecules/ItemAssign.tsx diff --git a/app/routes/cashier-v2.tsx b/app/routes/cashier-v2.tsx index 777ea1af..f3135780 100644 --- a/app/routes/cashier-v2.tsx +++ b/app/routes/cashier-v2.tsx @@ -3,8 +3,8 @@ import { type ClientActionFunction, useSubmit } from "@remix-run/react"; import { useCallback, useEffect, useMemo, useRef, useState } from "react"; import useSWRSubscription from "swr/subscription"; import { z } from "zod"; +import { ItemAssign } from "~/components/molecules/ItemAssign"; import { DiscountInput } from "~/components/organisms/DiscountInput"; -import { ItemAssign } from "~/components/organisms/ItemAssign"; import { OrderAlertDialog } from "~/components/organisms/OrderAlertDialog"; import { Button } from "~/components/ui/button"; import { Input } from "~/components/ui/input";