Skip to content

Commit 7fdd9a9

Browse files
committed
feat: update RenderConnectStep to conditionally render ReturnUserExperience for returning users
1 parent fe9043e commit 7fdd9a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/RenderConnectStep.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const RenderConnectStep = (props) => {
9494

9595
let connectStepView = null
9696

97-
if (showRuxStep) {
97+
if (showRuxStep && step === STEPS.RETURNING_USER_EXPERIENCE) {
9898
connectStepView = <ReturnUserExperience ref={props.navigationRef} />
9999
} else if (step === STEPS.DISCLOSURE) {
100100
connectStepView = <Disclosure ref={props.navigationRef} />

0 commit comments

Comments
 (0)