This commit is contained in:
David Arranz 2025-12-01 19:51:25 +01:00
parent 5ac9aa0d3a
commit 43a6b24ccb
2 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@
"build": "tsc && vite build", "build": "tsc && vite build",
"build:rodax": "tsc && vite build --mode rodax", "build:rodax": "tsc && vite build --mode rodax",
"build:acana": "tsc && vite build --mode acana", "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", "clean": "rm -rf dist && rm -rf node_modules && rm -rf .turbo",
"check:deps": "pnpm exec depcheck", "check:deps": "pnpm exec depcheck",
"lint": "biome lint --fix", "lint": "biome lint --fix",

View File

@ -1,4 +1,5 @@
import { PropsWithChildren } from "react"; import type { PropsWithChildren } from "react";
import { CustomersProvider } from "../context"; import { CustomersProvider } from "../context";
export const CustomersLayout = ({ children }: PropsWithChildren) => { export const CustomersLayout = ({ children }: PropsWithChildren) => {