Skip to content

Commit

Permalink
refactor: Update order-summary.vue to conditionally render the main c…
Browse files Browse the repository at this point in the history
…ontent
  • Loading branch information
scottyzen committed Aug 19, 2024
1 parent 7796251 commit d8d555a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion woonuxt_base/app/pages/order-summary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ useSeoMeta({
class="w-full min-h-[600px] flex items-center p-4 text-gray-800 md:bg-white md:rounded-xl md:mx-auto md:shadow-lg md:my-24 md:mt-8 md:max-w-3xl md:p-16 flex-col">
<LoadingIcon v-if="!isLoaded" class="flex-1" />
<template v-else>
<div class="w-full">
<div v-if="order" class="w-full">
<template v-if="isSummaryPage">
<div class="flex items-center gap-4">
<NuxtLink
Expand Down

0 comments on commit d8d555a

Please sign in to comment.