update:修复github工作流问题

This commit is contained in:
2026-03-11 09:38:28 +08:00
parent a2671e2968
commit 5bc68f5a9a
11 changed files with 183 additions and 107 deletions

View File

@@ -11,11 +11,6 @@ export const APM_STORE_STATS_BASE_URL: string =
export const currentApp = ref<App | null>(null);
export const currentAppIsInstalled = ref(false);
const initialMode = (localStorage.getItem("store_mode") as StoreMode) || "hybrid";
const initialMode =
(localStorage.getItem("store_mode") as StoreMode) || "hybrid";
export const currentStoreMode = ref<StoreMode>(initialMode);
declare global {
interface Window {
apm_store: any;
}
}