From db2bb6f5217351f7e97b6d7e2d32815f74d57e0a Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 29 Nov 2024 16:58:36 +0530 Subject: [PATCH] feat: cannot delete robots notify --- src/components/molecules/RecordingsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index e9f0aebc..48ce48ec 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -253,7 +253,7 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl checkRunsForRecording(row.id).then((result: boolean) => { if (result) { - notify('warning', 'Cannot delete recording as it has active runs'); + notify('warning', 'Cannot delete robot as it has active runs'); } })