From e29f26958c0fdbe3716ed61fa7132e7568354d14 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Thu, 21 Apr 2022 14:57:48 -0400 Subject: [PATCH] fix channel > channel edit --- ui/component/publishForm/view.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ui/component/publishForm/view.jsx b/ui/component/publishForm/view.jsx index d934b6d64..d6156efa0 100644 --- a/ui/component/publishForm/view.jsx +++ b/ui/component/publishForm/view.jsx @@ -214,9 +214,7 @@ function PublishForm(props: Props) { const emptyPostError = mode === PUBLISH_MODES.POST && (!fileText || fileText.trim() === ''); const formDisabled = (fileFormDisabled && !editingURI) || emptyPostError || publishing; const isInProgress = filePath || editingURI || name || title; - const activeChannelName = - (myClaimForUri && myClaimForUri.signing_channel && myClaimForUri.signing_channel.name) || - (activeChannelClaim && activeChannelClaim.name); + const activeChannelName = activeChannelClaim && activeChannelClaim.name; // Editing content info const fileMimeType = myClaimForUri && myClaimForUri.value && myClaimForUri.value.source