Skip to content

Commit

Permalink
fixed formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-blockchain committed Jul 5, 2018
1 parent a0fa208 commit 4598754
Showing 1 changed file with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,28 +60,28 @@ const SecondStep = (props) => {
}
</Container>
<Buttons>
{
step === 1
? null
: <Button onClick={handleClickPrevious} nature='empty'>
<Text weight={300} cursor='pointer'>
<FormattedMessage id='modals.recoveryphrase.secondstep.prevfourwords' defaultMessage='Previous 4 Words' />
</Text>
</Button>
}
{
step === 3
? <Button onClick={nextStep} style={spacing('ml-15')} nature='primary'>
<Text color='white' weight={300} cursor='pointer'>
<FormattedMessage id='modals.recoveryphrase.secondstep.finishandcheckphrase' defaultMessage='Finish & Verify' />
</Text>
</Button>
: <Button onClick={handleClickNext} style={spacing('ml-15')} nature='dark'>
<Text color='white' weight={300} cursor='pointer'>
<FormattedMessage id='modals.recoveryphrase.secondstep.nextfourwords' defaultMessage='Next 4 Words' />
</Text>
</Button>
}
{
step === 1
? null
: <Button onClick={handleClickPrevious} nature='empty'>
<Text weight={300} cursor='pointer'>
<FormattedMessage id='modals.recoveryphrase.secondstep.prevfourwords' defaultMessage='Previous 4 Words' />
</Text>
</Button>
}
{
step === 3
? <Button onClick={nextStep} style={spacing('ml-15')} nature='primary'>
<Text color='white' weight={300} cursor='pointer'>
<FormattedMessage id='modals.recoveryphrase.secondstep.finishandcheckphrase' defaultMessage='Finish & Verify' />
</Text>
</Button>
: <Button onClick={handleClickNext} style={spacing('ml-15')} nature='dark'>
<Text color='white' weight={300} cursor='pointer'>
<FormattedMessage id='modals.recoveryphrase.secondstep.nextfourwords' defaultMessage='Next 4 Words' />
</Text>
</Button>
}
</Buttons>
</Wrapper>
)
Expand Down

0 comments on commit 4598754

Please sign in to comment.