Skip to content

Commit 55b84a9

Browse files
committed
chore: format interaction runtime
1 parent ada763f commit 55b84a9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/runtime/create-runtime/interaction-runtime.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ export function createRuntimeInteraction(
9999
const updateCanvasCursor = () => {
100100
const canvas = getCanvas();
101101
if (!canvas) return;
102-
const showPointer = linkState.hoverId !== 0 && !selectionState.active && !selectionState.dragging;
102+
const showPointer =
103+
linkState.hoverId !== 0 && !selectionState.active && !selectionState.dragging;
103104
canvas.style.cursor = showPointer ? "pointer" : "text";
104105
};
105106

0 commit comments

Comments
 (0)