diff --git a/desktop/plugins/public/reactdevtools/index.tsx b/desktop/plugins/public/reactdevtools/index.tsx index 5bff47ed5..b07c124db 100644 --- a/desktop/plugins/public/reactdevtools/index.tsx +++ b/desktop/plugins/public/reactdevtools/index.tsx @@ -231,7 +231,13 @@ export function devicePlugin(client: DevicePluginClient) { }); root = createRoot(devToolsNode); - root.render(React.createElement(DevTools)); + root.render( + React.createElement(DevTools, { + showTabBar: true, + hideViewSourceAction: true, + hideLogAction: true, + }), + ); console.debug('flipper-plugin-react-devtools -> connected'); setStatus(ConnectionStatus.Connected, 'Connected');