Fixes Modal won't reappear after closing it with ESC (#2319)

This commit is contained in:
Arpit 2022-02-22 18:22:34 +05:30 committed by GitHub
parent c152be5d55
commit ec7c8749b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ export const Modal = function Modal({
keyboard={true}
enforceFocus={false}
animation={false}
onEscapeKeyDown={() => setShowModal(false)}
onEscapeKeyDown={() => hideModal()}
>
{containerProps.mode === 'edit' && (
<ConfigHandle id={id} component={component} setSelectedComponent={containerProps.onComponentClick} />