From 22dfc33da0fc7e56fb5e11a36789765fd04f9e39 Mon Sep 17 00:00:00 2001 From: Pritesh Nandgaonkar Date: Wed, 20 May 2020 08:12:40 -0700 Subject: [PATCH] Fetch recommended and all builds types in Sidebar Summary: This diff updates the sidebar to show the recommended and all build types. Also there is error handling in place along with tests. Right now the download happens by opening browser and the build gets downloaded in the download folder. But later in the diffs I will improve this flow to do that in the Flipper with a UX showing status updates. Reviewed By: mweststrate Differential Revision: D21556383 fbshipit-source-id: 6de9a00fe416c22cae7bacf91828a2221644eac7 --- desktop/app/src/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/app/src/index.tsx b/desktop/app/src/index.tsx index 3475c2304..0ffce3cf7 100644 --- a/desktop/app/src/index.tsx +++ b/desktop/app/src/index.tsx @@ -33,6 +33,7 @@ export { export {PluginClient, Props} from './plugin'; export {default as Client} from './Client'; export {MetricType} from './utils/exportMetrics'; +export {default as promiseTimeout} from './utils/promiseTimeout'; export {clipboard} from 'electron'; export {default as SupportRequestFormV2} from './fb-stubs/SupportRequestFormV2'; export {default as constants} from './fb-stubs/constants';