diff --git a/frontend/src/components/SeriesModal.jsx b/frontend/src/components/SeriesModal.jsx index f570f72b..dcfebf86 100644 --- a/frontend/src/components/SeriesModal.jsx +++ b/frontend/src/components/SeriesModal.jsx @@ -503,26 +503,12 @@ const SeriesModal = ({ series, opened, onClose }) => { {displaySeries.m3u_account.name} - {displaySeries.m3u_account.account_type && ( - - {displaySeries.m3u_account.account_type === 'XC' - ? 'Xtream Codes' - : 'Standard M3U'} - - )} ) : providers.length === 1 ? ( {providers[0].m3u_account.name} - {providers[0].m3u_account.account_type && ( - - {providers[0].m3u_account.account_type === 'XC' - ? 'Xtream Codes' - : 'Standard M3U'} - - )} {providers[0].stream_id && ( Stream {providers[0].stream_id} diff --git a/frontend/src/components/VODModal.jsx b/frontend/src/components/VODModal.jsx index 9828e8b6..d30b1c74 100644 --- a/frontend/src/components/VODModal.jsx +++ b/frontend/src/components/VODModal.jsx @@ -490,13 +490,6 @@ const VODModal = ({ vod, opened, onClose }) => { {providers[0].m3u_account.name} - {providers[0].m3u_account.account_type && ( - - {providers[0].m3u_account.account_type === 'XC' - ? 'Xtream Codes' - : 'Standard M3U'} - - )} {providers[0].stream_id && ( Stream {providers[0].stream_id} @@ -536,13 +529,6 @@ const VODModal = ({ vod, opened, onClose }) => { {vod.m3u_account.name} - {vod.m3u_account.account_type && ( - - {vod.m3u_account.account_type === 'XC' - ? 'Xtream Codes' - : 'Standard M3U'} - - )} )}