3 Commits

Author SHA1 Message Date
dextmorgn
ab1b7f5c24 feat(app): remove paste feature 2026-01-25 16:02:07 +01:00
dextmorgn
f1ef843616 fix: Makefile 2026-01-25 15:57:13 +01:00
dextmorgn
6766c940bc fix: Makefile 2026-01-25 15:56:32 +01:00
2 changed files with 2 additions and 6 deletions

View File

@@ -1,8 +1,5 @@
PROJECT_ROOT := $(shell pwd)
export DOCKER_BUILDKIT=0
export COMPOSE_PARALLEL_LIMIT=1
COMPOSE_DEV := docker compose -f docker-compose.dev.yml
COMPOSE_PROD := docker compose -f docker-compose.prod.yml
@@ -80,7 +77,6 @@ dev:
@echo "Starting DEV environment..."
$(MAKE) check-env
$(MAKE) infra-dev
$(MAKE) migrate-dev
$(MAKE) build-dev
$(MAKE) up-dev
$(MAKE) open-browser

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,