diff --git a/apps/admin-x-framework/src/utils/queryClient.ts b/apps/admin-x-framework/src/utils/queryClient.ts index 7a3197e916..26a9cfe719 100644 --- a/apps/admin-x-framework/src/utils/queryClient.ts +++ b/apps/admin-x-framework/src/utils/queryClient.ts @@ -13,7 +13,8 @@ const queryClient = window.adminXQueryClient || new QueryClient({ staleTime: 5 * (60 * 1000), // 5 mins cacheTime: 10 * (60 * 1000), // 10 mins // We have custom retry logic for specific errors in fetchApi() - retry: false + retry: false, + networkMode: 'always' } } });