From 530bfd4820b82a2f090c08327989f5cbbff637db Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 1 Apr 2026 00:14:42 +0200 Subject: [PATCH] Update App.tsx to use store.executeCommand for animationAutoplay --- 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 f621987c..f5d25d9f 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -3579,7 +3579,7 @@ export function App({ store, initialStatusMessage }: AppProps) { type="checkbox" checked={selectedModelInstance.animationAutoplay ?? false} onChange={(e) => { - store.dispatch( + store.executeCommand( createUpsertModelInstanceCommand({ modelInstance: { ...selectedModelInstance, animationAutoplay: e.target.checked }, label: "Set animation autoplay"