From bb2342a2b9a374cc3804dce36f81c36d530ddeac Mon Sep 17 00:00:00 2001 From: Anthony Dubis Date: Wed, 5 May 2021 07:38:52 -0700 Subject: [PATCH] Re-integrate bug report traces after Sandy Migration Summary: The migration to Sandy (D28060888) breaks the existing integration we have with importing Flipper traces from bug reports. Given that, I broke this diff out from that one just to highlight the changes. `pluginStates2` appears to be the field to use for Sandy traces (rather than `store`, which we were using before) Differential Revision: D28209561 fbshipit-source-id: 9803e1a60b1b1deba6403b50b4079aac2a19efa6 --- desktop/app/src/utils/exportData.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/desktop/app/src/utils/exportData.tsx b/desktop/app/src/utils/exportData.tsx index 9cbac5718..d975439ab 100644 --- a/desktop/app/src/utils/exportData.tsx +++ b/desktop/app/src/utils/exportData.tsx @@ -75,6 +75,8 @@ export type ExportType = { pluginStates: PluginStatesExportState; activeNotifications: Array; }; + // The GraphQL plugin relies on this format for generating + // Flipper traces from employee dogfooding. See D28209561. pluginStates2: SandyPluginStates; supportRequestDetails?: SupportFormRequestDetailsState; };