N-FIN-57: fix passing invalid props

This commit is contained in:
Markus Thielker 2024-03-17 20:31:08 +01:00
parent a7863d4b31
commit 2c01251a32
No known key found for this signature in database

View file

@ -59,7 +59,7 @@ const ServerActionTrigger = React.forwardRef<HTMLButtonElement, ButtonWithAction
<AlertDialogTrigger asChild>
<Comp
className={cn(buttonVariants({variant, size, className}))}
{...{...props, action: undefined, callback: undefined}}
{...{...props, dialog: undefined, action: undefined, callback: undefined}}
ref={ref}
/>
</AlertDialogTrigger>
@ -87,7 +87,7 @@ const ServerActionTrigger = React.forwardRef<HTMLButtonElement, ButtonWithAction
className={cn(buttonVariants({variant, size, className}))}
ref={ref}
onClick={handleSubmit}
{...props}
{...{...props, dialog: undefined, action: undefined, callback: undefined}}
/>
);
},