1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

remove logs

This commit is contained in:
Peter Clement 2021-09-14 18:25:05 +01:00
parent 3b66a14a6f
commit 44b7b6a6f8
4 changed files with 0 additions and 5 deletions

View file

@ -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
)

View file

@ -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"

View file

@ -5,7 +5,6 @@
export let isTrigger
let inputToggled
let outputToggled
$: console.log(isTrigger)
</script>
<ModalContent

View file

@ -6,7 +6,6 @@
import EditAutomationPopover from "./EditAutomationPopover.svelte"
$: selectedAutomationId = $automationStore.selectedAutomation?.automation?._id
$: console.log($automationStore)
onMount(() => {
automationStore.actions.fetch()
})