manual lint --fix

This commit is contained in:
Henry Jameson 2025-02-04 15:23:21 +02:00
commit d1ea589531
76 changed files with 187 additions and 184 deletions

View file

@ -93,7 +93,7 @@ const EmojiTab = {
this.displayError(resp.error)
return Promise.reject(resp)
}
}).then(done => {
}).then(() => {
this.$refs.createPackPopover.hidePopover()
this.packName = this.newPackName
@ -110,7 +110,7 @@ const EmojiTab = {
this.displayError(resp.error)
return Promise.reject(resp)
}
}).then(done => {
}).then(() => {
delete this.editedMetadata[this.packName]
this.deleteModalVisible = false
@ -167,7 +167,7 @@ const EmojiTab = {
return resultingPromise
})
.then(finished => allPacks)
.then(() => allPacks)
.catch(data => {
this.displayError(data)
})
@ -226,7 +226,7 @@ const EmojiTab = {
this.displayError(resp.error)
return Promise.reject(resp)
}
}).then(done => {
}).then(() => {
this.packName = this.remotePackDownloadAs
this.remotePackDownloadAs = ''
})