update: remove useStore from handle

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-11-22 14:22:11 +01:00
parent 049b701580
commit 5c3a1fba13
+1 -2
View File
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { useHandle, useStore } from '../../composables'
import { useHandle } from '../../composables'
import { Position, ValidConnectionFunc } from '../../types'
import { NodeId } from '../../context'
@@ -18,7 +18,6 @@ const props = withDefaults(defineProps<HandleProps>(), {
connectable: true,
})
const store = useStore()
const nodeId = inject(NodeId, '')
const handler = useHandle()