From 07a14f5dac6085789932dbf01f76145dda9b9f03 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 29 Nov 2024 16:57:21 +0530 Subject: [PATCH] feat: run failed to start 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 c4e68789..bb83cdb4 100644 --- a/src/components/molecules/InterpretationButtons.tsx +++ b/src/components/molecules/InterpretationButtons.tsx @@ -107,7 +107,7 @@ export const InterpretationButtons = ({ enableStepping }: InterpretationButtonsP if (finished) { notify('info', 'Run finished'); } else { - notify('error', 'Interpretation failed to start'); + notify('error', 'Run failed to start'); } } };