Removed useless type inference

This commit is contained in:
Alexis
2025-05-07 14:10:51 +02:00
parent f03d952183
commit 114e235a93

View File

@@ -34,5 +34,5 @@ type ToastVariants = VariantProps<typeof toastVariants>
export interface ToastProps extends ToastRootProps {
class?: HTMLAttributes["class"]
variant?: ToastVariants["variant"]
onOpenChange?: ((value: boolean) => void) | undefined
onOpenChange?: ((value: boolean) => void)
}