add flag to hide select voice providers (#7406)
This commit is contained in:
@@ -74,7 +74,7 @@ export default function SettingsView({
|
||||
|
||||
useEffect(() => {
|
||||
const handleKeyDown = (event: KeyboardEvent) => {
|
||||
if (event.key === 'Escape') {
|
||||
if (event.key === 'Escape' && !event.defaultPrevented) {
|
||||
onClose();
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user