Bug regression caused by suid updates

This commit is contained in:
Eric van der Vlist 2023-04-15 12:18:46 +02:00
parent 91ef0239c9
commit 5640cf8755
1 changed files with 4 additions and 4 deletions

View File

@ -153,7 +153,7 @@ const Invitation: Component<props> = (props) => {
};
return (
<>
<Show when={!!invitation() && !!invitation().data}>
<Dialog
open={!!invitation() && !!invitation().data}
fullScreen={false}
@ -213,7 +213,7 @@ const Invitation: Component<props> = (props) => {
>
<Alert severity='error'>Le code est erroné !</Alert>
</Box>
</Modal>{' '}
</Modal>
<Modal
open={!!invitation().success}
onClose={handleCloseSuccess}
@ -234,7 +234,7 @@ const Invitation: Component<props> = (props) => {
>
<Alert severity='success'>C'est tout bon !</Alert>
</Box>
</Modal>{' '}
</Modal>
<Modal
open={!!invitation().existing}
onClose={handleModalFailureClose}
@ -260,7 +260,7 @@ const Invitation: Component<props> = (props) => {
</Alert>
</Box>
</Modal>
</>
</Show>
);
};