From 55a5c7b051b8bbe62bc6f480ccb8565b265e5e99 Mon Sep 17 00:00:00 2001 From: jessopb <36554050+jessopb@users.noreply.github.com> Date: Mon, 19 Sep 2022 18:39:45 -0400 Subject: [PATCH] make thumbnail optional (#7690) --- ui/component/publishFormErrors/view.jsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ui/component/publishFormErrors/view.jsx b/ui/component/publishFormErrors/view.jsx index 7f4de6312..ea3c37a8e 100644 --- a/ui/component/publishFormErrors/view.jsx +++ b/ui/component/publishFormErrors/view.jsx @@ -47,11 +47,7 @@ function PublishFormErrors(props: Props) { {!bid &&
{__('A deposit amount is required')}
} {bidError &&
{__('Please check your deposit amount.')}
} {isUploadingThumbnail &&
{__('Please wait for thumbnail to finish uploading')}
} - {!isUploadingThumbnail && !thumbnail ? ( -
{__('A thumbnail is required. Please upload or provide an image URL above.')}
- ) : ( - thumbnailError && !thumbnailUploaded &&
{__('Thumbnail is invalid.')}
- )} + {thumbnailError && !thumbnailUploaded &&
{__('Thumbnail is invalid.')}
} {editingURI && !isStillEditing && !filePath && (
{__('Please reselect a file after changing the LBRY URL')}
)}