From 428034f48cb41a235c41826d5048af501b86212e Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 29 Nov 2024 17:04:09 +0530 Subject: [PATCH] feat: robot run 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 abec5929..752a17ea 100644 --- a/src/pages/MainPage.tsx +++ b/src/pages/MainPage.tsx @@ -98,9 +98,9 @@ export const MainPage = ({ handleEditRecording }: MainPageProps) => { socket.on('debugMessage', debugMessageHandler); setContent('runs'); if (browserId) { - notify('info', `Running recording: ${runningRecordingName}`); + notify('info', `Running robot: ${runningRecordingName}`); } else { - notify('error', `Failed to run recording: ${runningRecordingName}`); + notify('error', `Failed to run robot: ${runningRecordingName}`); } }) return (socket: Socket, browserId: string, runId: string) => {