diff --git a/ui/component/channelEdit/view.jsx b/ui/component/channelEdit/view.jsx
index 0ba9e4bac..3e84e40ff 100644
--- a/ui/component/channelEdit/view.jsx
+++ b/ui/component/channelEdit/view.jsx
@@ -108,7 +108,7 @@ function ChannelForm(props: Props) {
if (isClaimingInitialRewards) {
return __('Claiming credits...');
}
- return creatingChannel || updatingChannel ? __('Submitting') : __('Submit');
+ return creatingChannel || updatingChannel ? __('Submitting...') : __('Submit');
}, [isClaimingInitialRewards, creatingChannel, updatingChannel]);
const submitDisabled = React.useMemo(() => {
return (
@@ -121,7 +121,17 @@ function ChannelForm(props: Props) {
bidError ||
(isNewChannel && !params.name)
);
- }, [isClaimingInitialRewards, creatingChannel, updatingChannel, nameError, thumbError, coverError, bidError, isNewChannel, params.name]);
+ }, [
+ isClaimingInitialRewards,
+ creatingChannel,
+ updatingChannel,
+ nameError,
+ thumbError,
+ coverError,
+ bidError,
+ isNewChannel,
+ params.name,
+ ]);
function getChannelParams() {
// fill this in with sdk data
@@ -297,13 +307,8 @@ function ChannelForm(props: Props) {
(coverError && isUpload.cover ? (
{__('This will be visible in a few minutes.')}
) : (
- setCoverError(true)}
- />
- )
- )}
+ setCoverError(true)} />
+ ))}