N-FIN-57: fix passing invalid props
This commit is contained in:
parent
a7863d4b31
commit
2c01251a32
1 changed files with 2 additions and 2 deletions
|
@ -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}}
|
||||
/>
|
||||
);
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue