diff --git a/apps/storefront/src/components/HeadlessController.tsx b/apps/storefront/src/components/HeadlessController.tsx index 6bf12522..520582a1 100644 --- a/apps/storefront/src/components/HeadlessController.tsx +++ b/apps/storefront/src/components/HeadlessController.tsx @@ -21,7 +21,7 @@ import { LineItems, startMasquerade, } from '@/utils' -import createShoppingList from '@/utils/b3ShoppingList' +import createShoppingList from '@/utils/b3ShoppingList/b3ShoppingList' interface HeadlessControllerProps { setOpenPage: Dispatch> diff --git a/apps/storefront/src/pages/orderDetail/components/CreateShoppingList.tsx b/apps/storefront/src/pages/orderDetail/components/CreateShoppingList.tsx index 2907fd31..09399c61 100644 --- a/apps/storefront/src/pages/orderDetail/components/CreateShoppingList.tsx +++ b/apps/storefront/src/pages/orderDetail/components/CreateShoppingList.tsx @@ -3,7 +3,7 @@ import { useForm } from 'react-hook-form' import { Box } from '@mui/material' import { GlobaledContext } from '@/shared/global' -import createShoppingList from '@/utils/b3ShoppingList' +import createShoppingList from '@/utils/b3ShoppingList/b3ShoppingList' const B3Dialog = lazy(() => import('../../../components/B3Dialog')) const B3CustomForm = lazy(() => import('../../../components/B3CustomForm')) diff --git a/apps/storefront/src/utils/b3ShoppingList/index.ts b/apps/storefront/src/utils/b3ShoppingList/b3ShoppingList.ts similarity index 100% rename from apps/storefront/src/utils/b3ShoppingList/index.ts rename to apps/storefront/src/utils/b3ShoppingList/b3ShoppingList.ts