Skip to content

Commit

Permalink
conditionally rendering slider
Browse files Browse the repository at this point in the history
slider should not be rendered when drop count is infinite
  • Loading branch information
uDaiko committed Sep 20, 2024
1 parent 20d0344 commit 1c98964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/collection/drop/GenerativePreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</div>
<CollectionUnlockableSlider
v-if="drop.max"
v-if="drop.max && !isUnlimited"
class="text-neutral-5 dark:text-neutral-9"
:value="drop.minted / drop.max"
/>
Expand Down

0 comments on commit 1c98964

Please sign in to comment.