Skip to content

Commit

Permalink
get back open Modal prop because of hidden elements inside dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoevanp authored and ggazzo committed Apr 26, 2024
1 parent 25182c5 commit 731bae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/client/components/WarningModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type WarningModalProps = {
const WarningModal = ({ text, confirmText, close, cancel, cancelText, confirm, ...props }: WarningModalProps): ReactElement => {
const t = useTranslation();
return (
<Modal {...props}>
<Modal open {...props}>
<Modal.Header>
<Modal.Icon color='danger' name='modal-warning' />
<Modal.Title>{t('Are_you_sure')}</Modal.Title>
Expand Down

0 comments on commit 731bae3

Please sign in to comment.