refactor(nodes): set default for connectable to true

This commit is contained in:
braks
2022-10-10 21:33:44 +02:00
committed by Braks
parent 624438a0ea
commit 0215d49ad3
3 changed files with 3 additions and 3 deletions
@@ -6,7 +6,7 @@ import { Position } from '~/types'
const InputNode: FunctionalComponent<NodeProps> = function ({
sourcePosition = Position.Bottom,
label,
connectable = false,
connectable = true,
isValidSourcePos,
}) {
return [