remove logs
This commit is contained in:
parent
cdcd582c41
commit
6809aa6e22
|
@ -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
|
||||
)
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
export let isTrigger
|
||||
let inputToggled
|
||||
let outputToggled
|
||||
$: console.log(isTrigger)
|
||||
</script>
|
||||
|
||||
<ModalContent
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
import EditAutomationPopover from "./EditAutomationPopover.svelte"
|
||||
|
||||
$: selectedAutomationId = $automationStore.selectedAutomation?.automation?._id
|
||||
$: console.log($automationStore)
|
||||
onMount(() => {
|
||||
automationStore.actions.fetch()
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue