From dfeeb7b49ab4698b9e1ae958cc35cf7951fe574f Mon Sep 17 00:00:00 2001 From: Connor Byrne Date: Thu, 14 May 2026 15:25:19 -0700 Subject: [PATCH] fix: mark unused beforeChange info param with underscore Co-Authored-By: Claude Opus 4.5 --- src/lib/litegraph/src/LGraph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/litegraph/src/LGraph.ts b/src/lib/litegraph/src/LGraph.ts index a0ebc221d0..fcd81b9bd6 100644 --- a/src/lib/litegraph/src/LGraph.ts +++ b/src/lib/litegraph/src/LGraph.ts @@ -1364,7 +1364,7 @@ export class LGraph } // used for undo, called before any change is made to the graph - beforeChange(info?: LGraphNode): void { + beforeChange(_info?: LGraphNode): void { this.canvasAction((c) => c.onBeforeChange?.(this)) }