chore: build

This commit is contained in:
2026-06-14 17:50:35 +02:00
parent 3c92a0371f
commit 3a0f725159
93 changed files with 5311 additions and 4224 deletions
@@ -30,6 +30,7 @@ export interface CartItem {
quantity: number; // ✨ En GRAMMES (pas "combien de fois")
category: string;
image?: string;
is_reward?: boolean;
}
interface CartContextType {
@@ -129,6 +130,7 @@ export function CartProvider({ children }: { children: ReactNode }) {
quantity: item.quantity as number,
category: category,
image: item.image as string | undefined,
is_reward: item.is_reward as boolean | undefined,
};
});