fix: remove async from reloadActiveNoteTags

This commit is contained in:
Antonella Sgarlatta
2021-05-25 11:49:37 -03:00
parent 447c0109f0
commit 2b734415e4

View File

@@ -155,7 +155,7 @@ export class NotesState {
}
}
async reloadActiveNoteTags(): Promise<void> {
reloadActiveNoteTags(): void {
const { activeNote } = this;
if (activeNote) {
this.activeNoteTags = this.application.getAppState().getNoteTags(activeNote);