From 44b7b6a6f8756f00a8e2eb8b447abdaca3818679 Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Tue, 14 Sep 2021 18:25:05 +0100 Subject: [PATCH] remove logs --- packages/builder/src/builderStore/store/automation/index.js | 2 -- .../automation/AutomationBuilder/FlowChart/FlowItem.svelte | 1 - .../automation/AutomationBuilder/FlowChart/ResultsModal.svelte | 1 - .../components/automation/AutomationPanel/AutomationList.svelte | 1 - 4 files changed, 5 deletions(-) diff --git a/packages/builder/src/builderStore/store/automation/index.js b/packages/builder/src/builderStore/store/automation/index.js index 049e08edb4..db06ce1726 100644 --- a/packages/builder/src/builderStore/store/automation/index.js +++ b/packages/builder/src/builderStore/store/automation/index.js @@ -46,12 +46,10 @@ const automationActions = store => ({ }) }, save: async ({ automation }) => { - console.log(automation) const UPDATE_AUTOMATION_URL = `/api/automations` const response = await api.put(UPDATE_AUTOMATION_URL, automation) const json = await response.json() store.update(state => { - console.log(state) const existingIdx = state.automations.findIndex( existing => existing._id === automation._id ) diff --git a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte index 0a2ec3bb2b..5e34dd7d55 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte @@ -29,7 +29,6 @@ $: testResult = $automationStore.selectedAutomation.testResults?.steps.filter( step => step.stepId === block.stepId ) - $: console.log(testResult) $: instanceId = $database._id $: isTrigger = block.type === "TRIGGER" diff --git a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/ResultsModal.svelte b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/ResultsModal.svelte index 7fdb391820..d7d9951f54 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/ResultsModal.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/ResultsModal.svelte @@ -5,7 +5,6 @@ export let isTrigger let inputToggled let outputToggled - $: console.log(isTrigger) { automationStore.actions.fetch() })