<DropdownMenuItem>
<form action={deleteProduct}>
<button type="submit">Delete</button>
</form>
</DropdownMenuItem>
The delete button from dropdown menu does not work. A click on the button does not invoke the submit event (I used () => {alert("test");} instead of deleteProduct as well). I had to use onClick method to make things work.
The delete button from dropdown menu does not work. A click on the button does not invoke the submit event (I used
() => {alert("test");}instead ofdeleteProductas well). I had to useonClickmethod to make things work.