fix: allow undefined increased prop

This commit is contained in:
Daniel Roe 2022-11-30 13:24:03 +00:00
parent 47721801aa
commit 71fbe6acf9
No known key found for this signature in database
GPG key ID: 22D5008E4F5D9B55

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
defineProps<{
increased: boolean
increased?: boolean
}>()
</script>