From 33b3500aa470438963af90ee2edccdff9a27233d Mon Sep 17 00:00:00 2001 From: Nikita Kiselev Date: Sun, 10 Aug 2025 16:36:52 +0300 Subject: [PATCH] feat: remove prefilled fields in checkout --- spa/src/stores/CheckoutStore.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spa/src/stores/CheckoutStore.js b/spa/src/stores/CheckoutStore.js index 92dc2e5..184919f 100644 --- a/spa/src/stores/CheckoutStore.js +++ b/spa/src/stores/CheckoutStore.js @@ -6,12 +6,12 @@ import {useCartStore} from "@/stores/CartStore.js"; export const useCheckoutStore = defineStore('checkout', { state: () => ({ customer: { - firstName: "Иван", - lastName: "Васильевич", - email: "ival_vasil@mail.ru", - phone: "+79999999999", - address: "Москва, Красная площадь, 1", - comment: "Доставить срочно❗️", + firstName: "", + lastName: "", + email: "", + phone: "", + address: "", + comment: "", tgData: null, },