Skip to content

Commit

Permalink
[SQ] Fixed Maintainability
Browse files Browse the repository at this point in the history
  • Loading branch information
RJMurg committed Aug 11, 2024
1 parent b1b5194 commit 7e1baa4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,8 @@ export default class Clerk extends Plugin {
});
}

onunload() {

}

async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
this.settings = { ...DEFAULT_SETTINGS, ...await this.loadData()};
}

async saveSettings() {
Expand Down

0 comments on commit 7e1baa4

Please sign in to comment.