Skip to content

Commit 0842ff3

Browse files
fix(docs): fix mobile redaction (#11338)
1 parent 8acf46c commit 0842ff3

File tree

2 files changed

+5
-5
lines changed
  • docs/platforms

2 files changed

+5
-5
lines changed

docs/platforms/apple/guides/ios/session-replay/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ If you encounter any data not being redacted with the default settings, please l
8484
To disable redaction altogether (not to be used on applications with sensitive data):
8585

8686
```swift
87-
options.experimental.sessionReplay.redactAllText = true
88-
options.experimental.sessionReplay.redactAllImages = true
87+
options.experimental.sessionReplay.redactAllText = false
88+
options.experimental.sessionReplay.redactAllImages = false
8989
```
9090

9191
## Error Linking

docs/platforms/react-native/session-replay/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ To disable redaction altogether (not to be used on applications with sensitive d
8787

8888
```javascript
8989
Sentry.mobileReplayIntegration({
90-
maskAllText: true,
91-
maskAllImages: true,
92-
maskAllVectors: true,
90+
maskAllText: false,
91+
maskAllImages: false,
92+
maskAllVectors: false,
9393
}),
9494
```
9595

0 commit comments

Comments
 (0)