refactor: canonicalize TypeScript and Tailwind syntax

This commit is contained in:
2026-07-14 19:06:47 +08:00
parent 52bbc363cf
commit 836ae95940
23 changed files with 58 additions and 58 deletions
@@ -39,7 +39,7 @@ describe("createHttpClient", () => {
await authStorage.setLoginToken("old-login-token");
await authStorage.setRefreshToken("refresh-token");
const requestAuthHeaders: Array<string | null> = [];
const requestAuthHeaders: (string | null)[] = [];
const fetchMock = vi.fn<typeof fetch>(async (input, init) => {
const url = new URL(input instanceof Request ? input.url : String(input));
const headers =