Skip to content

Commit d6fb9e8

Browse files
authored
[0.76] Rename and reorder Network panel as "(Expo, unstable)" (#120)
1 parent e8c7943 commit d6fb9e8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

front_end/panels/network/network-meta.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ const UIStrings = {
2020
/**
2121
*@description Title of the Network tool
2222
*/
23-
network: 'Network',
23+
// [RN] Temporary rename for 0.76-stable. This panel is only shown when
24+
// Expo sets `?unstable_enableNetworkPanel=true`.
25+
network: 'Network (Expo, unstable)',
2426
/**
2527
*@description Command for showing the 'Network request blocking' tool
2628
*/
@@ -145,7 +147,8 @@ UI.ViewManager.registerViewExtension({
145147
id: 'network',
146148
commandPrompt: i18nLazyString(UIStrings.showNetwork),
147149
title: i18nLazyString(UIStrings.network),
148-
order: 40,
150+
// [RN] Temporary reordering for 0.76-stable.
151+
order: 1100,
149152
condition: Root.Runtime.conditions.reactNativeUnstableNetworkPanel,
150153
async loadView() {
151154
const Network = await loadNetworkModule();

0 commit comments

Comments
 (0)