fix hydration errors

This commit is contained in:
2025-07-03 18:34:02 +02:00
parent 9063846282
commit 3b02ccbe80
5 changed files with 267 additions and 186 deletions

View File

@ -380,7 +380,7 @@ const colorMode = useColorMode()
const menuStore = useMenuStore()
const checkoutStore = useCheckoutStore()
checkoutStore.getUserCart()
await checkoutStore.getUserCart()
const route = useRoute()
const isDark = computed({

View File

@ -216,11 +216,11 @@ import { UCarousel } from '#components'
const checkoutStore = useCheckoutStore()
const menuStore = useMenuStore()
checkoutStore.getOrder()
checkoutStore.getBankAccount()
checkoutStore.getUserCart()
checkoutStore.getDeliveryOptions()
checkoutStore.getDefAddress()
await checkoutStore.getOrder()
await checkoutStore.getBankAccount()
await checkoutStore.getUserCart()
await checkoutStore.getDeliveryOptions()
await checkoutStore.getDefAddress()
defineProps<{
component: {