From c3e20f5d9e4fbfbdc5a03e664614eafd8eddb611 Mon Sep 17 00:00:00 2001 From: Abhijeet Jha <74712637+iamAbhi-916@users.noreply.github.com> Date: Wed, 26 Nov 2025 21:52:42 +0530 Subject: [PATCH] Modern Debugger : Disable network domain from devtools UI until 0.83 (#15410) * disable network domain for modern devtools until 0.83 * Change files --- ...ative-windows-b5ea6091-37fa-414e-b602-ba1ff3df1f55.json | 7 +++++++ vnext/Microsoft.ReactNative/ReactHost/ReactHost.cpp | 4 ---- 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 change/react-native-windows-b5ea6091-37fa-414e-b602-ba1ff3df1f55.json diff --git a/change/react-native-windows-b5ea6091-37fa-414e-b602-ba1ff3df1f55.json b/change/react-native-windows-b5ea6091-37fa-414e-b602-ba1ff3df1f55.json new file mode 100644 index 00000000000..40891063a35 --- /dev/null +++ b/change/react-native-windows-b5ea6091-37fa-414e-b602-ba1ff3df1f55.json @@ -0,0 +1,7 @@ +{ + "type": "prerelease", + "comment": "disable network domain for modern devtools until 0.83", + "packageName": "react-native-windows", + "email": "74712637+iamAbhi-916@users.noreply.github.com", + "dependentChangeType": "patch" +} diff --git a/vnext/Microsoft.ReactNative/ReactHost/ReactHost.cpp b/vnext/Microsoft.ReactNative/ReactHost/ReactHost.cpp index b6bc2c4970c..b05f10863e8 100644 --- a/vnext/Microsoft.ReactNative/ReactHost/ReactHost.cpp +++ b/vnext/Microsoft.ReactNative/ReactHost/ReactHost.cpp @@ -310,10 +310,6 @@ class ReactNativeWindowsFeatureFlags : public facebook::react::ReactNativeFeatur bool fuseboxEnabledRelease() override { return true; // Enable Fusebox (modern CDP backend) by default for React Native Windows } - - bool fuseboxNetworkInspectionEnabled() override { - return true; // Enable network inspection support in Fusebox - } }; //=============================================================================================