File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -193,8 +193,8 @@ export function _SignInStart(): JSX.Element {
193193 >
194194 < SocialButtonsReversibleContainer >
195195 < SignInSocialButtons />
196- { hasSocialOrWeb3Buttons && < Divider /> }
197- { standardFormAttributes . length && (
196+ { hasSocialOrWeb3Buttons && standardFormAttributes . length ? < Divider /> : null }
197+ { standardFormAttributes . length ? (
198198 < Form . Root onSubmit = { handleFirstPartySubmit } >
199199 < Form . ControlRow >
200200 < Form . Control
@@ -205,7 +205,7 @@ export function _SignInStart(): JSX.Element {
205205 < InstantPasswordRow field = { passwordBasedInstance ? instantPasswordField : undefined } />
206206 < Form . SubmitButton > Continue</ Form . SubmitButton >
207207 </ Form . Root >
208- ) }
208+ ) : null }
209209 </ SocialButtonsReversibleContainer >
210210 </ Col >
211211 < Footer . Root >
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ function _SignUpContinue() {
125125 >
126126 < SocialButtonsReversibleContainer >
127127 { showSocialButtons && < SignUpSocialButtons /> }
128- { showSocialButtons && < Divider /> }
128+ { showSocialButtons && showFormFields ( userSettings ) && < Divider /> }
129129 { showFormFields ( userSettings ) && (
130130 < SignUpForm
131131 handleSubmit = { handleSubmit }
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ function _SignUpStart(): JSX.Element {
198198 >
199199 < SocialButtonsReversibleContainer >
200200 { ( ! hasTicket || missingRequirementsWithTicket ) && < SignUpSocialButtons /> }
201- { hasSocialOrWeb3Buttons && < Divider /> }
201+ { hasSocialOrWeb3Buttons && showFormFields ( userSettings ) && < Divider /> }
202202 { showFormFields ( userSettings ) && (
203203 < SignUpForm
204204 handleSubmit = { handleSubmit }
You can’t perform that action at this time.
0 commit comments