diff --git a/contents/docs/session-replay/_snippets/ios-installation.mdx b/contents/docs/session-replay/_snippets/ios-installation.mdx index 155436c5ad72..774e7f678dfc 100644 --- a/contents/docs/session-replay/_snippets/ios-installation.mdx +++ b/contents/docs/session-replay/_snippets/ios-installation.mdx @@ -30,9 +30,6 @@ config.sessionReplayConfig.maskAllImages = true // Default is true. config.sessionReplayConfig.maskAllSandboxedViews = true -// Enable masking of images that likely originated from user's photo library. Default is true. -config.sessionReplayConfig.maskPhotoLibraryImages = true - // Whether network requests are captured in recordings. Default is true // Only metric-like data like speed, size, and response code are captured. // No data is captured from the request or response body. diff --git a/contents/docs/session-replay/_snippets/react-native-installation.mdx b/contents/docs/session-replay/_snippets/react-native-installation.mdx index e715218d31e9..5664a4e015cf 100644 --- a/contents/docs/session-replay/_snippets/react-native-installation.mdx +++ b/contents/docs/session-replay/_snippets/react-native-installation.mdx @@ -40,9 +40,6 @@ export const posthog = new PostHog( // Enable masking of all sandboxed system views like UIImagePickerController, PHPickerViewController and CNContactPickerViewController. Default is true. // iOS only maskAllSandboxedViews = true, - // Enable masking of images that likely originated from user's photo library. Default is true. - // iOS only - maskPhotoLibraryImages = true, // Capture logs automatically. Default is true. // Android only (Native Logcat only) captureLog: true,