Fix lint errors
This commit is contained in:
parent
1184b71396
commit
6f13989819
1 changed files with 7 additions and 2 deletions
|
@ -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]
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue