diff options
author | bobzel <zzzman@gmail.com> | 2025-04-23 22:02:36 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-04-23 22:02:36 -0400 |
commit | 78ac87b8acf63079071e5e8805692ed8c30042ce (patch) | |
tree | b8e0cc310733b8651b7c8e020fa3e258d0f460a6 /src/client/views/nodes/formattedText/DailyJournal.tsx | |
parent | 9a46e81d662e59413a076b2e0041d1455bc15294 (diff) |
lots of typechecking fixes.
Diffstat (limited to 'src/client/views/nodes/formattedText/DailyJournal.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/DailyJournal.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/DailyJournal.tsx b/src/client/views/nodes/formattedText/DailyJournal.tsx index 797a9b812..871c556e6 100644 --- a/src/client/views/nodes/formattedText/DailyJournal.tsx +++ b/src/client/views/nodes/formattedText/DailyJournal.tsx @@ -161,7 +161,7 @@ export class DailyJournal extends ViewBoxAnnotatableComponent<FieldViewProps>() // Check if doc or selection changed if (!prevState.doc.eq(state.doc) || !prevState.selection.eq(state.selection)) { - let found = false; + const found = false; const textToRemove = this.predictiveText; state.doc.descendants((node, pos) => { |