Merge pull request #1470 from Bilb/fix-registration-buttons

fix registration continue your session button not shown for recovery
pull/1474/head
Audric Ackermann 4 years ago committed by GitHub
commit f1222f4b3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -506,7 +506,7 @@ export class RegistrationTabs extends React.Component<any, State> {
private renderSignInButtons() {
const { signInMode } = this.state;
const or = window.i18n('or');
// const or = window.i18n('or');
if (signInMode === SignInMode.Default) {
return (
@ -519,7 +519,14 @@ export class RegistrationTabs extends React.Component<any, State> {
);
}
return <></>;
return (
<SessionButton
onClick={this.handleContinueYourSessionClick}
buttonType={SessionButtonType.Brand}
buttonColor={SessionButtonColor.Green}
text={window.i18n('continueYourSession')}
/>
);
}
private renderTermsConditionAgreement() {

Loading…
Cancel
Save