diff --git a/static/app-strings.json b/static/app-strings.json
index ef6f849f84..396f79dcd3 100644
--- a/static/app-strings.json
+++ b/static/app-strings.json
@@ -439,6 +439,13 @@
"Missing 'claimId' parameter.": "Missing 'claimId' parameter.",
"View Tag": "View Tag",
"Hide": "Hide",
+ "Unhide": "Unhide",
+ "Hide Channel": "Hide Channel",
+ "Unhide Channel": "Unhide Channel",
+ "Blocked and hidden channels": "Blocked and hidden channels",
+ "Moderators can block channels on your behalf. Blocked channels will appear in your \"Blocked and Hidden\" list.": "Moderators can block channels on your behalf. Blocked channels will appear in your \"Blocked and Hidden\" list.",
+ "Hidden channels will be invisible to you in the app. They will not know they are hidden and can still interact with you and your content.": "Hidden channels will be invisible to you in the app. They will not know they are hidden and can still interact with you and your content.",
+ "You do not have any hidden channels": "You do not have any hidden channels",
"Close": "Close",
"You have blocked this channel content.": "You have blocked this channel content.",
"Network and data settings": "Network and data settings",
diff --git a/ui/component/channelMuteButton/view.jsx b/ui/component/channelMuteButton/view.jsx
index b996bf05b3..dd38c64175 100644
--- a/ui/component/channelMuteButton/view.jsx
+++ b/ui/component/channelMuteButton/view.jsx
@@ -21,7 +21,7 @@ function ChannelMuteButton(props: Props) {
}
}
- return ;
+ return ;
}
export default ChannelMuteButton;
diff --git a/ui/component/claimMenuList/view.jsx b/ui/component/claimMenuList/view.jsx
index 818d8c7461..e6ff9ed5f0 100644
--- a/ui/component/claimMenuList/view.jsx
+++ b/ui/component/claimMenuList/view.jsx
@@ -548,12 +548,14 @@ function ClaimMenuList(props: Props) {
{(!claimIsMine || channelIsBlocked) && contentChannelUri ? (
!incognitoClaim && (
<>
-
+ {isChannelPage && (
+
+ )}
{isAdmin && (
)}
-
>
diff --git a/ui/component/commentMenuList/view.jsx b/ui/component/commentMenuList/view.jsx
index 9b2315c939..48ba7aa5ab 100644
--- a/ui/component/commentMenuList/view.jsx
+++ b/ui/component/commentMenuList/view.jsx
@@ -305,8 +305,8 @@ function CommentMenuList(props: Props) {