From e80a8be9888852449857d1dc0e39443c53034a8a Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 29 Nov 2024 16:56:48 +0530 Subject: [PATCH] feat: run finished notify --- src/components/molecules/InterpretationButtons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/InterpretationButtons.tsx b/src/components/molecules/InterpretationButtons.tsx index 0723bac2..c4e68789 100644 --- a/src/components/molecules/InterpretationButtons.tsx +++ b/src/components/molecules/InterpretationButtons.tsx @@ -105,7 +105,7 @@ export const InterpretationButtons = ({ enableStepping }: InterpretationButtonsP const finished = await interpretCurrentRecording(); setInfo({ ...info, running: false }); if (finished) { - notify('info', 'Interpretation finished'); + notify('info', 'Run finished'); } else { notify('error', 'Interpretation failed to start'); }