From a97c023338e18870b3140521f25dbbf8494f10df Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Fri, 27 Mar 2026 01:43:20 +0300 Subject: [PATCH] chore: remove unsued assignment Fixes new ESLint warning --- src/ui/timecodes-md-post-processor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/timecodes-md-post-processor.ts b/src/ui/timecodes-md-post-processor.ts index 182d2a7..d28ccab 100644 --- a/src/ui/timecodes-md-post-processor.ts +++ b/src/ui/timecodes-md-post-processor.ts @@ -24,7 +24,7 @@ export function turnRawTimecodesIntoClickableLinks( } latestNoteBeingProcessed = currentNoteSourcePath - let node: Node | null = null + let node: Node | null const nodesWithTimecodes: Text[] = [] const nodeWalker = document.createTreeWalker(root, NodeFilter.SHOW_ALL) while ((node = nodeWalker.nextNode()) != null) {