Customers

This commit is contained in:
David Arranz 2026-04-07 15:15:43 +02:00
parent dbd8f2b3f4
commit 982ed7d562
2 changed files with 1 additions and 2 deletions

View File

@ -40,7 +40,7 @@ export const useCustomerUpdateController = (
isLoading,
isError: isLoadError,
error: loadError,
} = useCustomerGetQuery(customerId, { enabled: Boolean(customerId) });
} = useCustomerGetQuery({ id: customerId, enabled: Boolean(customerId) });
// 2) Estado de creación (mutación)
const {

View File

@ -1,4 +1,3 @@
// components/CustomerSkeleton.tsx
import { AppContent, BackHistoryButton } from "@repo/rdx-ui/components";
import { Button } from "@repo/shadcn-ui/components";