diff --git a/docs/platforms/apple/guides/ios/session-replay/customredact.mdx b/docs/platforms/apple/guides/ios/session-replay/customredact.mdx index e097a8b5982c1..50cdab7763a61 100644 --- a/docs/platforms/apple/guides/ios/session-replay/customredact.mdx +++ b/docs/platforms/apple/guides/ios/session-replay/customredact.mdx @@ -22,8 +22,8 @@ You can choose which type of view you want to mask or unmask by using the `maske Let's say you have a custom view that you want to mask and a `UILabel` subclass (which normally would be masked) that you don't want to mask. You can set the options like this: ```swift - options.experimental.sessionReplay.maskedViewClasses = [MyCustomView.self] - options.experimental.sessionReplay.unmaskedViewClasses = [MyCustomLabel.self] + options.sessionReplay.maskedViewClasses = [MyCustomView.self] + options.sessionReplay.unmaskedViewClasses = [MyCustomLabel.self] ``` ## Mask by View Instance