From 46641a285a37b8f9d4a8ea501def491425d5dc81 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 29 Nov 2024 17:03:10 +0530 Subject: [PATCH] feat: robot interpretation notify --- src/pages/MainPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/MainPage.tsx b/src/pages/MainPage.tsx index 6ce7efe8..55647950 100644 --- a/src/pages/MainPage.tsx +++ b/src/pages/MainPage.tsx @@ -49,10 +49,10 @@ export const MainPage = ({ handleEditRecording }: MainPageProps) => { aborted = true; notifyAboutAbort(runId).then(async (response) => { if (response) { - notify('success', `Interpretation of ${runningRecordingName} aborted successfully`); + notify('success', `Interpretation of robot ${runningRecordingName} aborted successfully`); await stopRecording(ids.browserId); } else { - notify('error', `Failed to abort the interpretation ${runningRecordingName} recording`); + notify('error', `Failed to abort the interpretation of ${runningRecordingName} robot`); } }) }