Skip to content

Commit

Permalink
fix(Coinify): button copy for isx
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Welber committed May 31, 2018
1 parent 86b0e2c commit c5d7c2f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,11 @@ class ISignThisContainer extends Component {
<ButtonContainer>
<Button nature='empty-secondary' onClick={() => coinifyActions.cancelISX()}>
<Text size='13px' weight={300} color='brand-secondary'>
<FormattedMessage id='scenes.buysell.coinify.isx.dolater' defaultMessage="I'll do this later" />
{
isxType && isxType === 'Trade'
? <FormattedMessage id='scenes.buysell.coinify.isx.finishlater' defaultMessage='Finish later' />
: <FormattedMessage id='scenes.buysell.coinify.isx.dolater' defaultMessage="I'll do this later" />
}
</Text>
</Button>
{
Expand Down

0 comments on commit c5d7c2f

Please sign in to comment.