diff --git a/ui/component/channelContent/view.jsx b/ui/component/channelContent/view.jsx
index be12f66b9..c3781d3b8 100644
--- a/ui/component/channelContent/view.jsx
+++ b/ui/component/channelContent/view.jsx
@@ -150,6 +150,7 @@ function ChannelContent(props: Props) {
           liveUris={
             isChannelBroadcasting && activeLivestreamForChannel.claimUri ? [activeLivestreamForChannel.claimUri] : []
           }
+          showHideSetting={false}
         />
       )}
 
diff --git a/ui/component/scheduledStreams/view.jsx b/ui/component/scheduledStreams/view.jsx
index d7473b945..9805ffd21 100644
--- a/ui/component/scheduledStreams/view.jsx
+++ b/ui/component/scheduledStreams/view.jsx
@@ -17,6 +17,7 @@ type Props = {
   liveUris: Array<string>,
   limitClaimsPerChannel?: number,
   onLoad: (number) => void,
+  showHideSetting: boolean,
   // --- perform ---
   setClientSetting: (string, boolean | string | number, boolean) => void,
   doShowSnackBar: (string) => void,
@@ -31,6 +32,7 @@ const ScheduledStreams = (props: Props) => {
     setClientSetting,
     doShowSnackBar,
     onLoad,
+    showHideSetting = true,
   } = props;
   const isMediumScreen = useIsMediumScreen();
   const isLargeScreen = useIsLargeScreen();
@@ -62,7 +64,9 @@ const ScheduledStreams = (props: Props) => {
     return (
       <div>
         {__('Upcoming Livestreams')}
-        <Button button="link" label={__('Hide')} onClick={hideScheduledStreams} className={'ml-s text-s'} />
+        {showHideSetting && (
+          <Button button="link" label={__('Hide')} onClick={hideScheduledStreams} className={'ml-s text-s'} />
+        )}
       </div>
     );
   };