Longer timeout on axios client

We're hitting the 10sec timeout trying to do login
This commit is contained in:
Eli Ribble 2026-04-16 21:24:45 +00:00
parent 59bf360937
commit e464a9fcdb
No known key found for this signature in database

View file

@ -8,7 +8,7 @@ class ApiClient {
constructor() {
this.client = axios.create({
timeout: 10000,
timeout: 60000,
withCredentials: true,
});