Fix the Feedback modal not being closable
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
@@ -69,7 +69,7 @@ export function FeedbackModal({ inCall, roomId, onClose, ...rest }: Props) {
|
|||||||
}, [sent, onClose]);
|
}, [sent, onClose]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal title="Submit Feedback" isDismissable {...rest}>
|
<Modal title="Submit Feedback" isDismissable onClose={onClose} {...rest}>
|
||||||
<ModalContent>
|
<ModalContent>
|
||||||
<Body>Having trouble? Help us fix it.</Body>
|
<Body>Having trouble? Help us fix it.</Body>
|
||||||
<form onSubmit={onSubmitFeedback}>
|
<form onSubmit={onSubmitFeedback}>
|
||||||
|
|||||||
Reference in New Issue
Block a user