Skip to content

Commit bf28168

Browse files
authored
neat (docs) remove double commas (#15582)
1 parent 811e30a commit bf28168

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

platform-includes/getting-started-tunneling/javascript.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ To enable tunneling, update `Sentry.init` with the following option:
44

55
```javascript {3}
66
Sentry.init({
7-
dsn: "___PUBLIC_DSN___",,
7+
dsn: "___PUBLIC_DSN___",
88
tunnel: "/tunnel",
99
});
1010
```

platform-includes/getting-started-tunneling/javascript.remix.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ To enable tunneling, update `Sentry.init` in your `entry.client.tsx` file with t
44

55
```javascript {filename:entry.client.tsx}{3}
66
Sentry.init({
7-
dsn: "___PUBLIC_DSN___",,
7+
dsn: "___PUBLIC_DSN___",
88
tunnel: "/tunnel",
99
});
1010
```

platform-includes/getting-started-tunneling/javascript.sveltekit.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ To enable tunneling, update `Sentry.init` in your `hooks.client.(js|ts)` file wi
44

55
```javascript {filename:hooks.client.(js|ts)} {3}
66
Sentry.init({
7-
dsn: "___PUBLIC_DSN___",,
7+
dsn: "___PUBLIC_DSN___",
88
tunnel: "/tunnel",
99
});
1010
```

0 commit comments

Comments
 (0)