Skip to content

Commit a339a45

Browse files
committed
Update experimental note
1 parent 6582b4d commit a339a45

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: "Learn how to enable Session Replay in your mobile app."
88

99
<Alert>
1010

11-
Flutter Session Replay is available on **iOS** and **Android**. This SDK support is still experimental as we iron out any bugs that are reported. If you encounter any issues please let us know via a GitHub ticket.
11+
Flutter Session Replay is available on **iOS** and **Android**.
1212

1313
</Alert>
1414

@@ -33,9 +33,9 @@ To set up replay, enable it by setting a non-zero sample rate. Also, make sure y
3333
```dart
3434
await SentryFlutter.init(
3535
(options) {
36-
...
37-
options.experimental.replay.sessionSampleRate = 1.0;
38-
options.experimental.replay.onErrorSampleRate = 1.0;
36+
options.dsn = '__DSN__';
37+
options.replay.sessionSampleRate = 1.0;
38+
options.replay.onErrorSampleRate = 1.0;
3939
},
4040
appRunner: () => runApp(
4141
SentryWidget(

0 commit comments

Comments
 (0)