From ff2ed8757f555dda5ed67371daf67972fb3352e6 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Mon, 27 Apr 2026 10:43:30 +0700 Subject: [PATCH] fix: set fallback timeout to 30s --- src/services/http/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/http/client.ts b/src/services/http/client.ts index cb22c2f4..c9fbfe2c 100644 --- a/src/services/http/client.ts +++ b/src/services/http/client.ts @@ -38,7 +38,7 @@ export async function httpClient( 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: {