worthy-azureW
Refine4mo ago
7 replies
worthy-azure

MUI DeleteButton no longer working

After upgrading to Refine v5, the <DeleteButton> is no longer working, even preventing all the buttons after it to show.

The implementation is pretty straightforward
import {
  DeleteButton,
  EditButton,
  ShowButton,
} from "@refinedev/mui";

renderCell: function render({ row }) {
  return (
    <>
      <EditButton hideText recordItemId={row.id} />
      <DeleteButton hideText recordItemId={row.id} />
      <ShowButton hideText recordItemId={row.id} />
    </>
  );
}


Is there something that must be changed with the new version?
Was this page helpful?