From 1ddaf5c32f113a0700be875ecf09c240a147cc6c Mon Sep 17 00:00:00 2001 From: Rahim Rahman Date: Thu, 20 Mar 2025 11:15:05 -0600 Subject: [PATCH] fix(MM-63460): HTTPClientError spam (#8693) --- ios/ErrorReporting/Sentry.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/ErrorReporting/Sentry.swift b/ios/ErrorReporting/Sentry.swift index ca1b60524..a27a56353 100644 --- a/ios/ErrorReporting/Sentry.swift +++ b/ios/ErrorReporting/Sentry.swift @@ -16,7 +16,7 @@ func initSentryAppExt(){ SentrySDK.start { options in options.dsn = SENTRY_DSN options.enableAppHangTracking = false - options.enableCaptureFailedRequests = true + options.enableCaptureFailedRequests = false } } }