desctructuring code fixed

This commit is contained in:
1C0D 2023-08-07 02:58:32 +02:00
parent b0ec695296
commit 146c39ae05
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ export default class MyPlugin extends Plugin {
async loadSettings() {
this.settings = {
...await this.loadData(), DEFAULT_SETTINGS
...DEFAULT_SETTINGS, ...await this.loadData()
}
}