From e3d867611be8cf11c860b5113008c8319a3cd0a8 Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Tue, 16 May 2023 16:05:37 +0100 Subject: [PATCH] use correct sdk import --- packages/server/src/api/controllers/automation.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/server/src/api/controllers/automation.ts b/packages/server/src/api/controllers/automation.ts index f7e664964c..ff1de148fc 100644 --- a/packages/server/src/api/controllers/automation.ts +++ b/packages/server/src/api/controllers/automation.ts @@ -19,11 +19,10 @@ import { Automation, AutomationActionStepId, AutomationResults, - AutomationStepType, BBContext, } from "@budibase/types" import { getActionDefinitions as actionDefs } from "../../automations/actions" -import sdk from "src/sdk" +import sdk from "../../sdk" async function getActionDefinitions() { return removeDeprecated(await actionDefs())