import { Popover, Transition } from '@headlessui/react'; import { Fragment } from 'react'; import { MutedItem } from '@app/channel/components/mutedItem'; import { MuteIcon } from '@shared/icons'; export function ChannelBlackList({ blacklist }: { blacklist: any }) { return ( {({ open }) => ( <>

Your muted list

Currently, unmute only affect locally, when you move to new client, muted list will loaded again

{blacklist.map((item: any) => ( ))}
)}
); }