From 18a12622a261f7fe3f87172d7a4fe4480cbd6042 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan <tzarebczan@users.noreply.github.com> Date: Thu, 16 Aug 2018 09:07:55 -0400 Subject: [PATCH] remove duplicate thumbnail message --- src/renderer/component/publishForm/view.jsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/renderer/component/publishForm/view.jsx b/src/renderer/component/publishForm/view.jsx index 76a8a96ff..a0bed4049 100644 --- a/src/renderer/component/publishForm/view.jsx +++ b/src/renderer/component/publishForm/view.jsx @@ -298,9 +298,6 @@ class PublishForm extends React.PureComponent<Props> { {uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS && <div>{__('Please wait for thumbnail to finish uploading')}</div>} {!tosAccepted && <div>{__('You must agree to the terms of service')}</div>} - {uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS && ( - <div>{__('Please wait for thumbnail to finish uploading')}</div> - )} {!!editingURI && !isStillEditing && !filePath && <div>{__('You need to reselect a file after changing the LBRY URL')}</div>}