fix: set fallback timeout to 30s

This commit is contained in:
ValdiANS
2026-04-27 10:43:30 +07:00
parent cb454e7eb7
commit ff2ed8757f
+1 -1
View File
@@ -38,7 +38,7 @@ export async function httpClient<T, B = unknown>(
method: opts.method ?? 'GET',
params: opts.query,
data: opts.body,
timeout: opts.timeoutMs ?? 10_000,
timeout: opts.timeoutMs ?? 30_000,
withCredentials: isCookieAuth && !isBearerAuth,
responseType: opts.responseType,
headers: {