From e464a9fcdbc5bdc189db861c20eb1628d1ed3d48 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 16 Apr 2026 21:24:45 +0000 Subject: [PATCH] Longer timeout on axios client We're hitting the 10sec timeout trying to do login --- ts/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/client.ts b/ts/client.ts index a2a66507..6b82caac 100644 --- a/ts/client.ts +++ b/ts/client.ts @@ -8,7 +8,7 @@ class ApiClient { constructor() { this.client = axios.create({ - timeout: 10000, + timeout: 60000, withCredentials: true, });