feat: run finished notify

This commit is contained in:
karishmas6
2024-11-29 16:56:48 +05:30
parent bf2a52be3d
commit e80a8be988

View File

@@ -105,7 +105,7 @@ export const InterpretationButtons = ({ enableStepping }: InterpretationButtonsP
const finished = await interpretCurrentRecording(); const finished = await interpretCurrentRecording();
setInfo({ ...info, running: false }); setInfo({ ...info, running: false });
if (finished) { if (finished) {
notify('info', 'Interpretation finished'); notify('info', 'Run finished');
} else { } else {
notify('error', 'Interpretation failed to start'); notify('error', 'Interpretation failed to start');
} }