diff --git a/web-app/src/containers/Tutorial/components/Continue.tsx b/web-app/src/containers/Tutorial/components/Continue.tsx index cca2904d..c8fda65a 100644 --- a/web-app/src/containers/Tutorial/components/Continue.tsx +++ b/web-app/src/containers/Tutorial/components/Continue.tsx @@ -28,7 +28,7 @@ interface Props { } const Continue = (props: Props) => { - const [modalState, setModalState] = React.useState<'closed' | 'open'>(props.defaultOpen ? 'open' : 'closed') + const [modalState, setModalState] = React.useState<'init' | 'closed' | 'open'>(props.defaultOpen ? 'open' : 'closed') const onClose = () => { setModalState('closed') @@ -47,11 +47,16 @@ const Continue = (props: Props) => { return ( <> - {modalState === 'closed' ? ( + {modalState === 'init' ? ( ) : null} + {modalState === 'closed' ? ( + + ) : null}