Took out unnecessary state

This commit is contained in:
Emir Karabeg
2025-01-11 13:19:56 -08:00
parent a59b5bcf3f
commit ed96a88d80

View File

@@ -23,7 +23,6 @@ export default function Workflow() {
const [pan, setPan] = useState({ x: 0, y: 0 })
const [isPanning, setIsPanning] = useState(false)
const [startPanPos, setStartPanPos] = useState({ x: 0, y: 0 })
const [draggedBlock, setDraggedBlock] = useState<string | null>(null)
// Initialize pan position after mount
useEffect(() => {