Skip to content

Commit 636d7f2

Browse files
committed
[AI] Remove trailing commas in code blocks
1 parent c4fa49b commit 636d7f2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

packages/vike-react-sentry/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ Sentry SDK configuration options.
8080

8181
export default {
8282
tracesSampleRate: 1.0,
83-
debug: true,
84-
)
83+
debug: true
84+
}
8585
```
8686

8787
> [!NOTE]
@@ -100,9 +100,9 @@ export default async () => {
100100
return {
101101
tracesSampleRate: 1.0,
102102
debug: true,
103-
environment: globalContext.isProduction ? 'production' : 'development',
103+
environment: globalContext.isProduction ? 'production' : 'development'
104104
}
105-
)
105+
}
106106
```
107107

108108
> [!NOTE]
@@ -119,7 +119,7 @@ You can define settings only on the client- or server-side:
119119
export default {
120120
integrations: [
121121
// Add custom browser integrations here
122-
],
122+
]
123123
}
124124
```
125125

@@ -132,7 +132,7 @@ export default {
132132
export default () => {
133133
integrations: [
134134
// Add custom Node.js integrations here
135-
],
135+
]
136136
}
137137
```
138138

0 commit comments

Comments
 (0)