chore: alter translation message abort

This commit is contained in:
Rohit
2025-06-12 11:38:34 +05:30
parent c0370e5665
commit 7048c8a092

View File

@@ -83,7 +83,7 @@ export const MainPage = ({ handleEditRecording, initialContent }: MainPageProps)
abortSocket.on('run-aborted', (abortData) => {
if (abortData.runId === runId) {
notify('success', t('main_page.notifications.abort_completed', { name: abortData.robotName || robotName }));
notify('success', t('main_page.notifications.abort_success', { name: abortData.robotName || robotName }));
setRerenderRuns(true);
abortSocket.disconnect();
}