Fix lint errors

This commit is contained in:
Robin Townsend 2023-04-19 15:55:55 -04:00
parent 1184b71396
commit 6f13989819

View file

@ -62,7 +62,12 @@ export function useCallViewKeyboardShortcuts(
setMicrophoneMuted(false); setMicrophoneMuted(false);
} }
}, },
[toggleLocalVideoMuted, toggleMicrophoneMuted, setMicrophoneMuted] [
focusElement,
toggleLocalVideoMuted,
toggleMicrophoneMuted,
setMicrophoneMuted,
]
) )
); );
@ -82,7 +87,7 @@ export function useCallViewKeyboardShortcuts(
setMicrophoneMuted(true); setMicrophoneMuted(true);
} }
}, },
[setMicrophoneMuted] [focusElement, setMicrophoneMuted]
) )
); );