Introduce the Rage button to users

Summary: Design doc: https://docs.google.com/document/d/1HLCFl46RfqG0o1mSt8SWrwf_HMfOCRg_oENioc1rkvQ/edit#

Reviewed By: passy

Differential Revision: D40553286

fbshipit-source-id: 5007e2df9979ed7897af380cd7595173e634fb5a
This commit is contained in:
Andrey Goncharov
2022-10-25 05:31:48 -07:00
committed by Facebook GitHub Bot
parent 14bdc87b11
commit 5d921966fb

View File

@@ -515,14 +515,16 @@ function ExportEverythingEverywhereAllAtOnceButton() {
footer={null}> footer={null}>
{statusMessage} {statusMessage}
</Modal> </Modal>
<LeftRailButton <NUX title="Press this button if you have issues with Flipper. It will collect Flipper debug data that you can send to the Flipper team to get help.">
icon={<BugOutlined />} <LeftRailButton
title="Export Flipper debug data" icon={<BugOutlined />}
onClick={() => { title="Export Flipper debug data"
exportEverythingEverywhereAllAtOnceTracked(); onClick={() => {
}} exportEverythingEverywhereAllAtOnceTracked();
small }}
/> small
/>
</NUX>
</> </>
); );
} }