From b91c7055eaad622c74ba6255edd9f26c5cb88ae3 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 11 Sep 2021 14:31:24 -0500 Subject: [PATCH] StatusContent: add missing `key` props --- app/soapbox/components/status_content.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/soapbox/components/status_content.js b/app/soapbox/components/status_content.js index 0e5d066ea..508e2de1f 100644 --- a/app/soapbox/components/status_content.js +++ b/app/soapbox/components/status_content.js @@ -265,15 +265,16 @@ class StatusContent extends React.PureComponent { } if (status.get('poll')) { - output.push(); + output.push(); } return output; } else { const output = [
); + output.push(); } return output;