From 1977ca6c12d8b78aff4151a62d811d2e4eb679ed Mon Sep 17 00:00:00 2001 From: sondrateconsulting-ryan <176254487+sondrateconsulting-ryan@users.noreply.github.com> Date: Sun, 9 Nov 2025 07:40:42 -0800 Subject: [PATCH] docs: add missing `SdkVerbosity` named import to initialization instructions The example code uses the named export `SDKVerbosity`, but it is not imported from the `'expo-datadog'` package. --- .../application_monitoring/react_native/setup/expo.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/real_user_monitoring/application_monitoring/react_native/setup/expo.md b/content/en/real_user_monitoring/application_monitoring/react_native/setup/expo.md index dad76cd0ce6d9..6c8ff733a7026 100644 --- a/content/en/real_user_monitoring/application_monitoring/react_native/setup/expo.md +++ b/content/en/real_user_monitoring/application_monitoring/react_native/setup/expo.md @@ -101,7 +101,7 @@ In this Datadog example project, View Tracking is achieved through `@datadog/mob Add the following code snippet to your initialization file: ```js -import { DdSdkReactNative, DdSdkReactNativeConfiguration } from 'expo-datadog'; +import { DdSdkReactNative, DdSdkReactNativeConfiguration, SdkVerbosity } from 'expo-datadog'; const config = new DdSdkReactNativeConfiguration( '', @@ -319,4 +319,4 @@ config.resourceEventMapper = event => { [8]: https://docs.expo.dev/workflow/customizing/#releasing-apps-with-custom-native-code-to [9]: https://docs.expo.dev/development/getting-started/ [10]: https://www.npmjs.com/package/@datadog/mobile-react-navigation -[11]: https://www.npmjs.com/package/@datadog/mobile-react-native-navigation \ No newline at end of file +[11]: https://www.npmjs.com/package/@datadog/mobile-react-native-navigation