Skip to content

Commit

Permalink
chore: fix linting
Browse files Browse the repository at this point in the history
dispose() should not be async.

Signed-off-by: Tim deBoer <[email protected]>
  • Loading branch information
deboer-tim committed Aug 12, 2024
1 parent 4aabf30 commit 5d01704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/history/historyNotifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class HistoryNotifier implements Disposable {
});
}

public async dispose(): Promise<void> {
public dispose(): void {
this.#watcher.dispose();
}
}

0 comments on commit 5d01704

Please sign in to comment.