diff --git a/desktop/flipper-ui-core/src/sandy-chrome/LeftRail.tsx b/desktop/flipper-ui-core/src/sandy-chrome/LeftRail.tsx index 75f1de626..993bc1d90 100644 --- a/desktop/flipper-ui-core/src/sandy-chrome/LeftRail.tsx +++ b/desktop/flipper-ui-core/src/sandy-chrome/LeftRail.tsx @@ -18,6 +18,7 @@ import { SettingOutlined, MedicineBoxOutlined, RocketOutlined, + BugOutlined, } from '@ant-design/icons'; import {SidebarLeft, SidebarRight} from './SandyIcons'; import {useDispatch, useStore} from '../utils/useStore'; @@ -192,6 +193,7 @@ export const LeftRail = withTrackingScope(function LeftRail({ + {config.showLogin && } @@ -430,6 +432,25 @@ function DebugLogsButton({ ); } +function ExportEverythingEverywhereAllAtOnceButton() { + const startLogsExportTracked = useTrackedCallback( + 'Debug data export', + startLogsExport, + [], + ); + + return ( + } + title="Export Flipper debug data" + onClick={() => { + startLogsExportTracked(); + }} + small + /> + ); +} + function LaunchEmulatorButton() { const store = useStore();