From 8361616dd647397777849fd87267134e0bc1fb9b Mon Sep 17 00:00:00 2001 From: Nikita Kiselev Date: Mon, 27 Oct 2025 08:42:06 +0300 Subject: [PATCH] fix: fix type error --- spa/src/stores/CheckoutStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/src/stores/CheckoutStore.js b/spa/src/stores/CheckoutStore.js index a139c6b..29cf39e 100644 --- a/spa/src/stores/CheckoutStore.js +++ b/spa/src/stores/CheckoutStore.js @@ -83,7 +83,7 @@ export const useCheckoutStore = defineStore('checkout', { name: product.name, price: product.total_numeric, position: index, - quantity: product.quantif, + quantity: product.quantity, }; }) : [], }