diff --git a/src/store/actions/fetch.js b/src/store/actions/fetch.js index cbe4267..ac1166f 100644 --- a/src/store/actions/fetch.js +++ b/src/store/actions/fetch.js @@ -29,7 +29,7 @@ export const shardOrigin = shardHost * defaults to 8s */ async function fetchWithTimeout(url, options = {}) { - const { timeout = 10000 } = options; + const { timeout = 30000 } = options; const controller = new AbortController(); const id = setTimeout(() => controller.abort(), timeout);