Skip to content

Commit

Permalink
🚨 fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ulisesantana committed Oct 19, 2023
1 parent 48adc19 commit 3a0eb1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/MainView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class MainView extends ItemView {
const onCreateNote = this.createNote.bind(this)
const onSearchNote = this.searchNotes.bind(this)
const onRefreshNotes = this.getPendingNotes.bind(this)

root.render(
<React.StrictMode>
<PendingNotesView
Expand Down Expand Up @@ -55,7 +55,7 @@ export class MainView extends ItemView {
// @ts-ignore
resolve(search.dom.resultDomLookup)
}, 300)) // the delay here was specified in 'obsidian-text-expand' plugin; I assume they had a reason
}
}

private createNote(note: string, event: UserEvent): Promise<NotePendingToBeCreated[]> {
const noteFile = note + '.md'
Expand Down

0 comments on commit 3a0eb1b

Please sign in to comment.