From 74c4abee21c73aa703ecddb4e13906150cbc4de2 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 29 Nov 2024 17:03:43 +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 55647950..abec5929 100644 --- a/src/pages/MainPage.tsx +++ b/src/pages/MainPage.tsx @@ -67,9 +67,9 @@ export const MainPage = ({ handleEditRecording }: MainPageProps) => { interpretStoredRecording(runId).then(async (interpretation: boolean) => { if (!aborted) { if (interpretation) { - notify('success', `Interpretation of ${runningRecordingName} succeeded`); + notify('success', `Interpretation of robot ${runningRecordingName} succeeded`); } else { - notify('success', `Failed to interpret ${runningRecordingName} recording`); + notify('success', `Failed to interpret ${runningRecordingName} robot`); // destroy the created browser await stopRecording(browserId); }