Skip to content

Commit 92da196

Browse files
committed
[automated] Apply ESLint and Oxfmt fixes
1 parent 218aa13 commit 92da196

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/renderer/core/canvas/useCanvasInteractions.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ export function useCanvasInteractions() {
2222
* Whether Vue node components should handle pointer events.
2323
* Returns false when canvas is in read-only/panning mode (e.g., space key held for panning).
2424
*/
25-
const shouldHandleNodePointerEvents = computed(
26-
() => !canvasStore.isReadOnly
27-
)
25+
const shouldHandleNodePointerEvents = computed(() => !canvasStore.isReadOnly)
2826

2927
/**
3028
* Returns true if the wheel event target is inside an element that should

0 commit comments

Comments
 (0)