remove spurrious console logs

This commit is contained in:
Ruben Fiszel
2023-01-04 19:55:31 +01:00
parent b56a2e6e4f
commit d72abb1c50
3 changed files with 0 additions and 4 deletions
@@ -67,7 +67,6 @@
)
if (c.componentInput.runnable?.type == 'runnableByName') {
let hex = await hash(c.componentInput.runnable.inlineScript?.content)
console.log(staticInputs)
return [`rawscript/${hex}`, staticInputs]
} else if (c.componentInput.runnable?.type == 'runnableByPath') {
return [
@@ -38,8 +38,6 @@
)
.filter(([i, f, m]) => f.length > 0)
$: console.log({flowState: $flowStateStore, steps});
setContext<PropPickerWrapperContext>('PropPickerWrapper', {
focusProp: () => {},
propPickerConfig: writable(undefined),
@@ -89,7 +89,6 @@
$: if (innerWidth < 1248 && innerWidth >= 768) {
isCollapsed = true
} else if ((innerWidth >= 1248 || innerWidth < 768) && !$page.url.pathname.startsWith('/apps')) {
console.log($page.url.pathname)
isCollapsed = false
}
</script>