Skip to content

Commit

Permalink
fix: required props
Browse files Browse the repository at this point in the history
  • Loading branch information
preschian committed Dec 12, 2024
1 parent 8d16633 commit de7c8bf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions components/shared/modals/ModalWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,22 @@ import { NeoButton, NeoModal } from '@kodadot1/brick'
const props = withDefaults(
defineProps<{
label: string
label?: string
title: string
icon: string
type?: string
expanded: boolean
isRight: boolean
expanded?: boolean
isRight?: boolean
id: string
isButtonHidden: boolean
}>(),
{
label: undefined,
type: undefined,
id: '',
isButtonHidden: false,
isRight: false,
expanded: false,
},
)
Expand Down

0 comments on commit de7c8bf

Please sign in to comment.