From 6cc67851b3f03ee210f0a68c4c8f368f09c02dcb Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Thu, 11 Sep 2025 10:43:22 -0500 Subject: [PATCH] Remove account type badge from modals. --- frontend/src/components/SeriesModal.jsx | 14 -------------- frontend/src/components/VODModal.jsx | 14 -------------- 2 files changed, 28 deletions(-) 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'} - - )} )}