From c04be93c55cbf4e01b3855f5e83be9ec19b9eb34 Mon Sep 17 00:00:00 2001 From: Fine Date: Tue, 22 Apr 2025 10:41:36 +0800 Subject: [PATCH] fix --- src/graphql/base.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphql/base.ts b/src/graphql/base.ts index cc27ff53..2ad064e4 100644 --- a/src/graphql/base.ts +++ b/src/graphql/base.ts @@ -44,8 +44,8 @@ export async function httpQuery({ }: { path?: string; method: string; - json: any; - headers: any; + json: unknown; + headers: Recordable; }) { const timeoutId = setTimeout(() => { abortRequestsAndUpdate();