From 83c852ca603db41ac298bb7d8b618fee8aed0a2c Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 2 Feb 2021 16:04:50 +1100 Subject: [PATCH] fix registration continue your session button not shown for recovery --- ts/components/session/RegistrationTabs.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ts/components/session/RegistrationTabs.tsx b/ts/components/session/RegistrationTabs.tsx index 6737b92ef..2f5bc34e1 100644 --- a/ts/components/session/RegistrationTabs.tsx +++ b/ts/components/session/RegistrationTabs.tsx @@ -506,7 +506,7 @@ export class RegistrationTabs extends React.Component { 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 { ); } - return <>; + return ( + + ); } private renderTermsConditionAgreement() {