From 4273791e676b47bc70768fbff882703ac110ddb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Tainon?= Date: Wed, 28 Aug 2024 15:24:19 +0200 Subject: [PATCH] Don't continue execution if end condition reached --- frontend/stepper/quickalgo_executor.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/stepper/quickalgo_executor.ts b/frontend/stepper/quickalgo_executor.ts index ba7bd35a..e1246a8e 100644 --- a/frontend/stepper/quickalgo_executor.ts +++ b/frontend/stepper/quickalgo_executor.ts @@ -50,6 +50,8 @@ class QuickalgoExecutor { Codecast.runner.stop(); await this.stepperContext.dispatch(stepperExecutionEndConditionReached(executionResult)); + + return; } }