Skip to content

Commit

Permalink
Fix console error (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade-GG authored Mar 12, 2024
1 parent 186bace commit 96a7f69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<wishlist-item :data="data" :item="item" :wishlist-id="wishlist.id">
<div
class="border-b flex flex-wrap items-center gap-y-5 py-5 *:px-2 last:border-none md:align-middle md:table-row md:*:py-5 md:*:px-1.5"
v-bind:class="{'opacity-70': !product.in_stock }"
v-bind:class="{'opacity-70': product && !product.in_stock }"
slot-scope="{ _renderProxy: self, product, remove, category }"
v-bind:key="item.id"
>
Expand Down

0 comments on commit 96a7f69

Please sign in to comment.