Skip to content

Commit

Permalink
ref(MakeOffer.vue): check if single item offer
Browse files Browse the repository at this point in the history
  • Loading branch information
hassnian committed Sep 16, 2024
1 parent 04b27a2 commit fd035ab
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions components/offer/MakeOffer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,10 @@
:loading="!autoTeleportLoaded"
@close="onClose"
>
<div
v-if="offerStore.items.length"
class="px-6 max-h-[50vh] overflow-y-auto"
>
<div class="px-6 max-h-[50vh] overflow-y-auto">
<ModalIdentityItem />

<MakingOfferSingleItem />
<MakingOfferSingleItem v-if="offerStore.items.length === 1" />
</div>

<div class="flex justify-between px-6">
Expand Down

0 comments on commit fd035ab

Please sign in to comment.