diff --git a/apps/admin-x-framework/src/utils/api/fetchApi.ts b/apps/admin-x-framework/src/utils/api/fetchApi.ts index 0967185340..a26121767a 100644 --- a/apps/admin-x-framework/src/utils/api/fetchApi.ts +++ b/apps/admin-x-framework/src/utils/api/fetchApi.ts @@ -74,10 +74,6 @@ export const useFetchApi = () => { ...options }); - if (attempts !== 0 && sentryDSN) { - Sentry.captureMessage('Request took multiple attempts', {extra: getErrorData()}); - } - return handleResponse(response) as ResponseData; } catch (error) { retryingMs = Date.now() - startTime;