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();