remove debug log statement

This commit is contained in:
keyan 2023-12-30 18:43:41 -06:00
parent f267137662
commit 9ab1d770eb
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ export function useSubs ({ prependSubs = [], sub, filterSubs = () => true, appen
...appendSubs.filter(s => s !== sub)])
useEffect(() => {
if (!data) return
console.log(data)
const joined = data.subs.filter(filterSubs).filter(s => !s.meMuteSub).map(s => s.name)
const muted = data.subs.filter(filterSubs).filter(s => s.meMuteSub).map(s => s.name)
const mutedSection = muted.length ? [{ label: 'muted', items: muted }] : []