fix(welcome): Finish button

This commit is contained in:
alexsparkes
2024-06-09 09:24:55 +01:00
parent 248293ed97
commit ef4764b3d4
3 changed files with 15 additions and 17 deletions

View File

@@ -92,18 +92,6 @@ export default class Modals extends PureComponent {
>
<MainModal modalClose={() => this.toggleModal('mainModal', false)} />
</Modal>
{/*<Modal
closeTimeoutMS={300}
onRequestClose={() => this.closeWelcome()}
isOpen={this.state.welcomeModal}
className="Modal welcomemodal mainModal"
overlayClassName="Overlay mainModal"
shouldCloseOnOverlayClick={false}
ariaHideApp={false}
>
<Welcome modalClose={() => this.closeWelcome()} modalSkip={() => this.previewWelcome()} />
</Modal>
{this.state.preview && <Preview setup={() => window.location.reload()} />}*/}
</>
);
}