chore: build

This commit is contained in:
2026-06-13 14:35:54 +02:00
parent 263c21b3b4
commit e30d394c0a
@@ -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,
};
});