From 7c4545ac1bc4e476eb8b359eef3abba44b303f9c Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 27 Apr 2026 15:42:38 +0200 Subject: [PATCH] Refactor simulation reset logic to use controller method --- src/app/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 1de1f4c7..a85e163b 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -4904,7 +4904,7 @@ export function App({ store, initialStatusMessage }: AppProps) { }) ); if (options.resetEditorSimulation === true && !editorSimulationPlaying) { - setEditorSimulationClockOverride(null); + editorSimulationController.reset(); } setStatusMessage(successMessage); } catch (error) {