modify slice to account for items with variants

This commit is contained in:
2025-11-05 17:39:24 +03:00
parent fe43b72953
commit 053461c787
3 changed files with 40 additions and 14 deletions

View File

@@ -328,6 +328,8 @@ export interface CartItem {
isHasLoyalty?: boolean;
no_of_stamps_give?: number;
comment?: string;
// Unique identifier for cart items with the same product but different variants/extras/comments
uniqueId?: string;
}
export interface User {