chore: remove unsued assignment

Fixes new ESLint warning
This commit is contained in:
Kirill Gavrilov 2026-03-27 01:43:20 +03:00
parent 7f0d379928
commit a97c023338

View file

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