Skip to content

Commit 2deb199

Browse files
authored
Update SR4M GA for Flutter
1 parent 75e4f5c commit 2deb199

File tree

1 file changed

+3
-7
lines changed
  • docs/platforms/flutter/session-replay

1 file changed

+3
-7
lines changed

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

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22
title: Set Up Session Replay
33
sidebar_order: 5500
44
notSupported:
5-
description: "Learn how to enable the Mobile Session Replay Beta in your app."
5+
description: "Learn how to enable Session Replay in your mobile app."
66
---
77

88
<Note>
99

1010
Flutter Session Replay is available on **iOS** and **Android**.
1111

12-
Mobile support for Session Replay is in Beta. Features available in Beta are still work-in-progress and may have bugs. We recognize the irony.
13-
14-
If you have any questions, feedback or would like to report a bug, please open a [GitHub issue](https://github.com/getsentry/sentry-dart/issues/new?template=BUG_REPORT.yml) with a link to a relevant replay in Sentry if possible.
15-
1612
</Note>
1713

1814
[Session Replay](/product/explore/session-replay/) helps you get to the root cause of an error or latency issue faster by providing you with a reproduction of what was happening in the user's device before, during, and after the issue. You can rewind and replay your application's state and see key user interactions, like taps, swipes, network requests, and console entries, in a single UI.
@@ -36,8 +32,8 @@ To set up the integration, add the following to your Sentry initialization:
3632
```dart
3733
await SentryFlutter.init((options) {
3834
...
39-
options.experimental.replay.sessionSampleRate = 1.0;
40-
options.experimental.replay.onErrorSampleRate = 1.0;
35+
options.replay.sessionSampleRate = 1.0;
36+
options.replay.onErrorSampleRate = 1.0;
4137
});
4238
```
4339

0 commit comments

Comments
 (0)