diff --git a/apps/web/package.json b/apps/web/package.json index 6bfe9b4e..40440c2d 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -8,7 +8,7 @@ "build": "tsc && vite build", "build:rodax": "tsc && vite build --mode rodax", "build:acana": "tsc && vite build --mode acana", - "preview": "vite preview --host", + "preview": "vite preview --host --debug --mode production", "clean": "rm -rf dist && rm -rf node_modules && rm -rf .turbo", "check:deps": "pnpm exec depcheck", "lint": "biome lint --fix", diff --git a/modules/customers/src/web/components/customers-layout.tsx b/modules/customers/src/web/components/customers-layout.tsx index e971ea47..77d9a81c 100644 --- a/modules/customers/src/web/components/customers-layout.tsx +++ b/modules/customers/src/web/components/customers-layout.tsx @@ -1,4 +1,5 @@ -import { PropsWithChildren } from "react"; +import type { PropsWithChildren } from "react"; + import { CustomersProvider } from "../context"; export const CustomersLayout = ({ children }: PropsWithChildren) => {