Skip to content

Commit 4c07ae7

Browse files
buenaflorantonpirker
authored andcommitted
flutter: fix dsn placeholder (#14040)
Should be `___DSN___`
1 parent 2ac1bb7 commit 4c07ae7

File tree

1 file changed

+1
-1
lines changed
  • docs/platforms/dart/guides/flutter/session-replay

1 file changed

+1
-1
lines changed

docs/platforms/dart/guides/flutter/session-replay/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To set up replay, enable it by setting a non-zero sample rate and wrapping your
3333
```dart
3434
await SentryFlutter.init(
3535
(options) {
36-
options.dsn = '__DSN__';
36+
options.dsn = '___DSN___';
3737
options.replay.sessionSampleRate = 1.0;
3838
options.replay.onErrorSampleRate = 1.0;
3939
},

0 commit comments

Comments
 (0)