Fix the Feedback modal not being closable
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
a4d982ea62
commit
719156aadf
1 changed files with 1 additions and 1 deletions
|
@ -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}>
|
||||||
|
|
Loading…
Reference in a new issue