From a9905df7f7fc1c70d50b43ff25c2039f74bc9cce Mon Sep 17 00:00:00 2001 From: ABHAY-100 Date: Fri, 9 Jan 2026 12:08:01 +0530 Subject: [PATCH] increase timeout --- src/Contexts/Api/ApiState.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Contexts/Api/ApiState.tsx b/src/Contexts/Api/ApiState.tsx index 9945693..7b5944f 100644 --- a/src/Contexts/Api/ApiState.tsx +++ b/src/Contexts/Api/ApiState.tsx @@ -61,7 +61,7 @@ export function ApiState({ children }: IApiStateProps) { console.log('Access token in state', accessToken); const axiosConfig = { - timeout: 10000, + timeout: 40000, headers: { 'Content-type': 'application/json', },