Apply repository-wide ESLint auto-fix formatting pass

Co-Authored-By: Codex <codex@openai.com>
This commit is contained in:
2026-03-08 12:11:57 +08:00
parent 7c48faaa3d
commit 847904c49b
172 changed files with 13629 additions and 9154 deletions

View File

@@ -9,7 +9,7 @@
import { defineStore } from "pinia";
/** Pinia store for managing the global loading spinner visibility. */
export const useLoadingStore = defineStore('loadingStore', {
export const useLoadingStore = defineStore("loadingStore", {
state: () => ({
/** Whether the loading spinner is currently visible. */
isLoading: true,
@@ -21,6 +21,6 @@ export const useLoadingStore = defineStore('loadingStore', {
*/
setIsLoading(isLoadingBoolean) {
this.isLoading = isLoadingBoolean;
}
},
},
});