Bug regression caused by suid updates
This commit is contained in:
parent
91ef0239c9
commit
5640cf8755
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue