fix: mark unused beforeChange info param with underscore

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Connor Byrne
2026-05-14 15:25:19 -07:00
parent fcb7e01259
commit dfeeb7b49a

View File

@@ -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))
}