make linter happy

This commit is contained in:
Aine
2025-06-18 16:36:52 +03:00
parent ef41275cf0
commit bad79df298
37 changed files with 83 additions and 126 deletions

View File

@@ -7,10 +7,8 @@ import {
SimpleForm,
BooleanInput,
useTranslate,
RaRecord,
useNotify,
useRedirect,
useDelete,
NotificationType,
useDeleteMany,
Identifier,
@@ -57,7 +55,7 @@ const DeleteUserButton: React.FC<DeleteUserButtonProps> = props => {
unselectAll();
redirect("/users");
},
onError: error => notify("ra.notification.data_provider_error", { type: "error" as NotificationType }),
onError: _error => notify("ra.notification.data_provider_error", { type: "error" as NotificationType }),
}
);
};