Skip to content

Commit f8b6836

Browse files
authored
fix(ui): Silence additional AbortErrors (#94644)
1 parent 125241a commit f8b6836

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

static/app/bootstrap/initializeSdk.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,10 @@ export function initializeSdk(config: Config) {
153153
*
154154
* Ref: https://bugs.webkit.org/show_bug.cgi?id=215771
155155
*/
156-
'AbortError: Fetch is aborted',
156+
/AbortError: Fetch is aborted/i,
157+
/AbortError: The operation was aborted/i,
158+
/AbortError: signal is aborted without reason/i,
159+
/AbortError: The user aborted a request/i,
157160
/**
158161
* React internal error thrown when something outside react modifies the DOM
159162
* This is usually because of a browser extension or chrome translate page

0 commit comments

Comments
 (0)