Skip to content

Commit c34816d

Browse files
authored
docs(browserapierrors): Correction symbol (#10882)
fix commas in js object
1 parent 06a8eaa commit c34816d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/platforms/javascript/common/configuration/integrations/browserapierrors.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ This integration wraps native time and event APIs (`setTimeout`, `setInterval`,
3333
Sentry.init({
3434
integrations: [
3535
Sentry.browserApiErrorsIntegration({
36-
setTimeout: true;
37-
setInterval: true;
38-
requestAnimationFrame: true;
39-
XMLHttpRequest: true;
40-
eventTarget: true;
36+
setTimeout: true,
37+
setInterval: true,
38+
requestAnimationFrame: true,
39+
XMLHttpRequest: true,
40+
eventTarget: true,
4141
}),
4242
],
4343
});

0 commit comments

Comments
 (0)