Remove unnecessary 'async function' in mounted

This commit is contained in:
Jason Henriquez 2024-04-12 11:18:53 -05:00
parent 807fa750c5
commit 27aec4c48b
2 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ export default defineComponent({
this.updateQueryDebounce = debounce(this.updateQuery, 500)
},
mounted: async function () {
mounted: function () {
document.addEventListener('keydown', this.keyboardShortcutHandler)
},
beforeDestroy: function () {

View File

@ -80,7 +80,7 @@ export default defineComponent({
this.dataLimit = this.initialDataLimit
}
},
mounted: async function () {
mounted: function () {
document.addEventListener('keydown', this.keyboardShortcutHandler)
},
beforeDestroy: function () {