mirror of
https://github.com/gavvvr/obsidian-timecodes-plugin.git
synced 2026-07-22 05:38:08 +00:00
chore: remove unsued assignment
Fixes new ESLint warning
This commit is contained in:
parent
7f0d379928
commit
a97c023338
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue