From f03fe9f78baacbee67d01695670f81febba51058 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 28 May 2020 10:47:27 -0400 Subject: [PATCH] remove extra div --- ui/component/webUploadList/view.jsx | 34 ++++++++++++++--------------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/ui/component/webUploadList/view.jsx b/ui/component/webUploadList/view.jsx index 038e8754d..b3bd014b5 100644 --- a/ui/component/webUploadList/view.jsx +++ b/ui/component/webUploadList/view.jsx @@ -19,24 +19,22 @@ export default function WebUploadList(props: Props) { return ( !!uploadCount && ( -
- 1 - ? __('You files are currently uploading. This will update automatically.') - : __('Your file is currently uploading. This will update automatically.') - } - body={ -
- {/* $FlowFixMe */} - {Object.values(currentUploads).map(({ progress, params, xhr }) => ( - - ))} -
- } - /> -
+ 1 + ? __('You files are currently uploading. This will update automatically.') + : __('Your file is currently uploading. This will update automatically.') + } + body={ +
+ {/* $FlowFixMe */} + {Object.values(currentUploads).map(({ progress, params, xhr }) => ( + + ))} +
+ } + /> ) ); }