From f31d33cd10894f7d28b2c3265efadf1ae9b8a1fe Mon Sep 17 00:00:00 2001 From: Michael Drury Date: Mon, 6 Oct 2025 16:23:34 +0100 Subject: [PATCH] fix(editor): Fix type error in `RunDataAi.test.ts` (no-changelog) (#20436) --- .../editor-ui/src/components/RunDataAi/RunDataAi.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/editor-ui/src/components/RunDataAi/RunDataAi.test.ts b/packages/frontend/editor-ui/src/components/RunDataAi/RunDataAi.test.ts index 8cfad752b4c..2ee6bbee69e 100644 --- a/packages/frontend/editor-ui/src/components/RunDataAi/RunDataAi.test.ts +++ b/packages/frontend/editor-ui/src/components/RunDataAi/RunDataAi.test.ts @@ -91,7 +91,7 @@ describe('RunDataAi', () => { beforeEach(() => { setActivePinia(createTestingPinia({ stubActions: false })); workflowsStore = useWorkflowsStore(); - workflowsStore.setWorkflowExecutionData(executionResponse); + workflowsStore.workflowExecutionData = executionResponse; }); it('should render the log that belong to given run index', async () => {