diff --git a/ui/component/comment/view.jsx b/ui/component/comment/view.jsx
index 735ad4acf..421e4f7b4 100644
--- a/ui/component/comment/view.jsx
+++ b/ui/component/comment/view.jsx
@@ -182,9 +182,9 @@ function Comment(props: Props) {
>
diff --git a/ui/component/commentMenuList/view.jsx b/ui/component/commentMenuList/view.jsx
index d8c7ce563..31fc09035 100644
--- a/ui/component/commentMenuList/view.jsx
+++ b/ui/component/commentMenuList/view.jsx
@@ -218,7 +218,7 @@ function CommentMenuList(props: Props) {
{activeChannelClaim && (
-
+
{__('Interacting as %channelName%', { channelName: activeChannelClaim.name })}
diff --git a/ui/component/commentReactions/view.jsx b/ui/component/commentReactions/view.jsx
index 4dc2c50d9..ba38f9d7d 100644
--- a/ui/component/commentReactions/view.jsx
+++ b/ui/component/commentReactions/view.jsx
@@ -105,7 +105,9 @@ export default function CommentReactions(props: Props) {
className={classnames('comment__action comment__action--creator-like')}
onClick={() => react(commentId, REACTION_TYPES.CREATOR_LIKE)}
>
- {creatorLiked &&
}
+ {creatorLiked && (
+
+ )}
)}
>
diff --git a/ui/component/header/view.jsx b/ui/component/header/view.jsx
index 09c354d5f..cf1cea516 100644
--- a/ui/component/header/view.jsx
+++ b/ui/component/header/view.jsx
@@ -319,7 +319,7 @@ const Header = (props: Props) => {
// @endif
>
{activeChannelUrl ? (
-
+
) : (
)}
diff --git a/ui/component/sideNavigation/view.jsx b/ui/component/sideNavigation/view.jsx
index 01a64bdb8..7d4cdc9a3 100644
--- a/ui/component/sideNavigation/view.jsx
+++ b/ui/component/sideNavigation/view.jsx
@@ -485,7 +485,7 @@ function SubscriptionListItem({ subscription }: { subscription: Subscription })
className="navigation-link navigation-link--with-thumbnail"
activeClass="navigation-link--active"
>
-
+
{channelName}
diff --git a/ui/component/wunderbarSuggestion/view.jsx b/ui/component/wunderbarSuggestion/view.jsx
index abe6287cb..b81c50622 100644
--- a/ui/component/wunderbarSuggestion/view.jsx
+++ b/ui/component/wunderbarSuggestion/view.jsx
@@ -40,7 +40,7 @@ export default function WunderbarSuggestion(props: Props) {
'wunderbar__suggestion--channel': isChannel,
})}
>
- {isChannel &&
}
+ {isChannel &&
}
{!isChannel && (
{/* @if TARGET='app' */}
diff --git a/ui/modal/modalPublishPreview/view.jsx b/ui/modal/modalPublishPreview/view.jsx
index eb7a2320b..3ffdbd8e2 100644
--- a/ui/modal/modalPublishPreview/view.jsx
+++ b/ui/modal/modalPublishPreview/view.jsx
@@ -199,7 +199,7 @@ const ModalPublishPreview = (props: Props) => {
const channelClaim = myChannels && myChannels.find((x) => x.name === channel);
return channel ? (
- {channelClaim && }
+ {channelClaim && }
{channel}
) : (
diff --git a/ui/page/channel/view.jsx b/ui/page/channel/view.jsx
index 9e2e8a1f7..8e0d21ed4 100644
--- a/ui/page/channel/view.jsx
+++ b/ui/page/channel/view.jsx
@@ -185,13 +185,7 @@ function ChannelPage(props: Props) {