feat: delete robot notify

This commit is contained in:
karishmas6
2024-11-29 16:59:21 +05:30
parent 4ce3bd6408
commit a1ec35e8f2

View File

@@ -260,7 +260,7 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl
deleteRecordingFromStorage(row.id).then((result: boolean) => { deleteRecordingFromStorage(row.id).then((result: boolean) => {
if (result) { if (result) {
setRows([]); setRows([]);
notify('success', 'Recording deleted successfully'); notify('success', 'Robot deleted successfully');
fetchRecordings(); fetchRecordings();
} }
}) })