From 40abef860f263d252eaf03f582183aa2f4d07935 Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Wed, 3 Feb 2021 06:58:04 -0800 Subject: [PATCH] Fix key warning Summary: Crash reporter generated React errors because the different lines in a stack trace are not per definition unique Reviewed By: jknoxville Differential Revision: D26201941 fbshipit-source-id: 084e0157b1fa3b8216d35f62f0dc17b0d6414b8e --- desktop/plugins/crash_reporter/index.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/desktop/plugins/crash_reporter/index.tsx b/desktop/plugins/crash_reporter/index.tsx index 273c051f0..7be38b039 100644 --- a/desktop/plugins/crash_reporter/index.tsx +++ b/desktop/plugins/crash_reporter/index.tsx @@ -782,12 +782,9 @@ export default class CrashReporterPlugin extends FlipperDevicePlugin< }, ]}> - {children.map((child) => { + {children.map((child, index) => { return ( - + ); })}