Lint take2?

This commit is contained in:
Erik Johnston 2022-11-11 16:02:24 +00:00
parent 456194312b
commit c9330debd4

View file

@ -309,7 +309,7 @@ export function useGroupCall(groupCall: GroupCall): UseGroupCallReturnType {
const toggleMicrophoneMuted = useCallback(() => { const toggleMicrophoneMuted = useCallback(() => {
const toggleToMute = !groupCall.isMicrophoneMuted(); const toggleToMute = !groupCall.isMicrophoneMuted();
setMicrophoneMuted(toggleToMute); setMicrophoneMuted(toggleToMute);
}, [groupCall]); }, [groupCall, setMicrophoneMuted]);
const toggleScreensharing = useCallback(async () => { const toggleScreensharing = useCallback(async () => {
if (!groupCall.isScreensharing()) { if (!groupCall.isScreensharing()) {