feat(app): remove paste feature

This commit is contained in:
dextmorgn
2026-01-25 16:02:07 +01:00
parent f1ef843616
commit ab1b7f5c24

View File

@@ -1,6 +1,6 @@
import { useCallback } from 'react'
import { useGraphStore } from '@/stores/graph-store'
import { useCreateOnPaste } from './use-create-on-paste'
// import { useCreateOnPaste } from './use-create-on-paste'
import { useKeyboardShortcut } from '@/hooks/use-keyboard-shortcut'
export const useKeyboardEvents = (sketchId: string) => {
@@ -11,7 +11,7 @@ export const useKeyboardEvents = (sketchId: string) => {
setSelectedNodes(filteredNodes)
}, [filteredNodes, setSelectedNodes])
useCreateOnPaste(sketchId)
// useCreateOnPaste(sketchId)
useKeyboardShortcut({
key: 'a',
ctrlOrCmd: true,