chore: add prefix to console messages

This commit is contained in:
Braks
2022-04-11 11:30:10 +02:00
parent 158be8a515
commit 06b0c143b5
3 changed files with 10 additions and 11 deletions
-1
View File
@@ -40,7 +40,6 @@ export const getHandle = (bounds: HandleElement[] = [], handleId?: string | null
if (!handleId && bounds.length === 1) handle = bounds[0]
else if (handleId) handle = bounds.find((d) => d.id === handleId)
console.log(handleId, handle, bounds)
return handle
}