diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx index 2d20e6c2..e642af4c 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx @@ -60,9 +60,10 @@ export default function LiveChannelContents({ }; const showNameDangerouslySetInnerHTML = () => { - return showNm - ? { __html: showNm } - : { __html: $L("No Livestream scheduled yet") }; + if (!showId) { + return { __html: $L("No Livestream scheduled yet") }; + } + return showNm ? { __html: showNm } : { __html: patncNm }; }; return (