From 516f352610a384267e8930bd80c77afec1df8c63 Mon Sep 17 00:00:00 2001 From: Carlos Nogueira Date: Tue, 6 Jan 2026 16:30:03 +0000 Subject: [PATCH] Fix inconsistency in babel plugin's README.md - svgTracking configuration option's default value should be `false` in order to be in conformity with the code --- packages/react-native-babel-plugin/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-babel-plugin/README.md b/packages/react-native-babel-plugin/README.md index af4d09e60..e47cbafd8 100644 --- a/packages/react-native-babel-plugin/README.md +++ b/packages/react-native-babel-plugin/README.md @@ -49,7 +49,7 @@ You can configure the plugin to adjust how it processes your code, giving you co | Option | Type | Default | Description | |-----------------|---------|---------|-------------| -| `svgTracking` | boolean | true | Whether to track SVG assets in the context of Session Replay. | +| `svgTracking` | boolean | false | Whether to track SVG assets in the context of Session Replay. | ---