fix(frontend): filter out stremio-usenet and archive stream type in type select

This commit is contained in:
Viren070
2025-11-27 23:53:14 +00:00
parent f3ad6104e9
commit 3c535ed4f6
@@ -265,7 +265,15 @@ function Content() {
};
const streamTypeOptions = (constants.STREAM_TYPES || [])
.filter(
(type) => !['error', 'statistic', 'external', 'youtube'].includes(type)
(type) =>
![
'error',
'statistic',
'external',
'youtube',
'stremio-usenet',
'archive',
].includes(type)
)
.map((type: string) => ({ label: typeLabelMap[type], value: type }));