Light mode improvements, empty state on search page

This commit is contained in:
2024-11-26 20:58:10 +01:00
parent 1a4b438191
commit 1f6ebf5b2e
19 changed files with 135 additions and 86 deletions

View File

@@ -19,10 +19,10 @@ export const useBasketStore = defineStore('basketStore', {
itemsInBasket: useLocalStorage<Array<BasketItemModel>>("hackmycart/basketStore/itemsInBasket", []),
/** Address used in the order dialog */
usedAddress: ref(new AddressModel()),
usedAddress: ref<AddressModel>(null),
/** Payment method used in the order dialog */
usedPayment: ref(new PaymentModel()),
usedPayment: ref<PaymentModel>(null),
/** Selected seats in the booking page */
selectedSeats: ref<Array<SelectedSeatModel>>([])