Hi guys i'm trying to create a button that disables my microphone in ws-chime, i followed the documentation to the letter only that when i click on the button nothing seems to happen.
const { muted, toggleMute } = useToggleLocalMute();
<button onClick={toggleMute}>
{muted ? "Unmute myself" : "Mute myself"}
</button>