diff --git a/src/components/ui/alert-dialog/AlertDialogAction.vue b/src/components/ui/alert-dialog/AlertDialogAction.vue index 60e5af7..b417759 100644 --- a/src/components/ui/alert-dialog/AlertDialogAction.vue +++ b/src/components/ui/alert-dialog/AlertDialogAction.vue @@ -4,7 +4,7 @@ import { cn } from '@/lib/utils' import { AlertDialogAction, type AlertDialogActionProps } from 'radix-vue' import { computed, type HTMLAttributes } from 'vue' -const props = defineProps() +const props = defineProps() const delegatedProps = computed(() => { const { class: _, ...delegated } = props diff --git a/src/components/ui/alert-dialog/AlertDialogCancel.vue b/src/components/ui/alert-dialog/AlertDialogCancel.vue index 61c5bb8..75caad9 100644 --- a/src/components/ui/alert-dialog/AlertDialogCancel.vue +++ b/src/components/ui/alert-dialog/AlertDialogCancel.vue @@ -4,7 +4,7 @@ import { cn } from '@/lib/utils' import { AlertDialogCancel, type AlertDialogCancelProps } from 'radix-vue' import { computed, type HTMLAttributes } from 'vue' -const props = defineProps() +const props = defineProps() const delegatedProps = computed(() => { const { class: _, ...delegated } = props diff --git a/src/components/ui/alert-dialog/AlertDialogContent.vue b/src/components/ui/alert-dialog/AlertDialogContent.vue index 83fdf99..872f5e2 100644 --- a/src/components/ui/alert-dialog/AlertDialogContent.vue +++ b/src/components/ui/alert-dialog/AlertDialogContent.vue @@ -10,7 +10,7 @@ import { } from 'radix-vue' import { computed, type HTMLAttributes } from 'vue' -const props = defineProps() +const props = defineProps() const emits = defineEmits() const delegatedProps = computed(() => { @@ -25,7 +25,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)