From 132380e777878072f81432bd6bb1f86585097047 Mon Sep 17 00:00:00 2001 From: Parker TenBroeck <51721964+ParkerTenBroeck@users.noreply.github.com> Date: Fri, 9 Jan 2026 14:20:42 -0500 Subject: [PATCH] sync --- web/root/src/visualizer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/root/src/visualizer.ts b/web/root/src/visualizer.ts index a945b88..ac3df28 100644 --- a/web/root/src/visualizer.ts +++ b/web/root/src/visualizer.ts @@ -277,8 +277,6 @@ function renderNode({ }: any) { return { drawNode() { - // @ts-expect-error bad library - const node: vis.Node = nodes.get(id)!; const t = getGraphTheme(); const r = Math.max(14, style?.size ?? 18); @@ -355,6 +353,8 @@ function renderNode({ // } // } + // @ts-expect-error bad library + const node: vis.Node = nodes.get(id)!; const physicsOff = node.physics === false; if (physicsOff) { drawPinIndicator(ctx, x, y, r, t.node_anchor);