diff --git a/packages/client/src/pizzax.ts b/packages/client/src/pizzax.ts index 790885d59..a16c8067f 100644 --- a/packages/client/src/pizzax.ts +++ b/packages/client/src/pizzax.ts @@ -2,9 +2,9 @@ import type { Ref } from "vue"; import { onUnmounted, ref, watch } from "vue"; -import { $i } from "@/reactiveAccount"; import { api } from "./os"; import { stream } from "./stream"; +import { $i } from "@/reactiveAccount"; type StateDef = Record< string, diff --git a/packages/client/src/reactiveAccount.ts b/packages/client/src/reactiveAccount.ts index 218024d60..46ff24992 100644 --- a/packages/client/src/reactiveAccount.ts +++ b/packages/client/src/reactiveAccount.ts @@ -1,5 +1,5 @@ import { reactive } from "vue"; -import { Account } from "@/account"; +import type { Account } from "@/account"; const accountData = localStorage.getItem("account");