This commit is contained in:
2025-08-05 21:53:39 +03:00
parent 50bf9061be
commit ef137729ac
22 changed files with 221 additions and 87 deletions

View File

@@ -16,7 +16,7 @@ export const useCartStore = defineStore('cart', {
getters: {
canCheckout: (state) => {
if (state.isLoading) {
if (state.isLoading || state.error_warning.length > 0) {
return false;
}
},