From 5d921966fb89c17043a8281a5579f4adbf56fdfd Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Tue, 25 Oct 2022 05:31:48 -0700 Subject: [PATCH] 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 --- .../src/sandy-chrome/LeftRail.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/desktop/flipper-ui-core/src/sandy-chrome/LeftRail.tsx b/desktop/flipper-ui-core/src/sandy-chrome/LeftRail.tsx index 04134fbdb..bdb86b07c 100644 --- a/desktop/flipper-ui-core/src/sandy-chrome/LeftRail.tsx +++ b/desktop/flipper-ui-core/src/sandy-chrome/LeftRail.tsx @@ -515,14 +515,16 @@ function ExportEverythingEverywhereAllAtOnceButton() { footer={null}> {statusMessage} - } - title="Export Flipper debug data" - onClick={() => { - exportEverythingEverywhereAllAtOnceTracked(); - }} - small - /> + + } + title="Export Flipper debug data" + onClick={() => { + exportEverythingEverywhereAllAtOnceTracked(); + }} + small + /> + ); }