fix: allow undefined `increased` prop

zio/stable
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
1 changed files with 1 additions and 1 deletions

View File

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