npm run format

This commit is contained in:
2024-09-28 02:17:51 +02:00
parent 1105a53feb
commit 130df8f144
7 changed files with 79 additions and 73 deletions

View File

@ -5,7 +5,7 @@ export const useZoneStore = defineStore('zone', {
state: () => ({
zone: null as Zone | null,
characters: [] as ExtendedCharacter[],
characterLoaded: false,
characterLoaded: false
}),
getters: {
getCharacterById: (state) => {
@ -42,8 +42,7 @@ export const useZoneStore = defineStore('zone', {
},
reset() {
this.zone = null
this.characters = [],
this.characterLoaded = false
;(this.characters = []), (this.characterLoaded = false)
}
}
})