reorder join flow to put country second

This commit is contained in:
Ben Wheeler 2019-09-11 10:39:46 -04:00
parent 290a6ad9ad
commit 70baf75f5e

View file

@ -137,9 +137,9 @@ class JoinFlow extends React.Component {
) : (
<Progression step={this.state.step}>
<UsernameStep onNextStep={this.handleAdvanceStep} />
<CountryStep onNextStep={this.handleAdvanceStep} />
<BirthDateStep onNextStep={this.handleAdvanceStep} />
<GenderStep onNextStep={this.handleAdvanceStep} />
<CountryStep onNextStep={this.handleAdvanceStep} />
<EmailStep
waiting={this.state.waiting}
onNextStep={this.handlePrepareToRegister}