Skip to content

Commit

Permalink
Merge pull request #1385 from LiskHQ/1373-add-followed-account-button…
Browse files Browse the repository at this point in the history
…-bug

Fix followed accounts button - Closes #1373
  • Loading branch information
michaeltomasik committed Oct 23, 2018
2 parents c71559a + 53735f4 commit 5dc0969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/resultBox/resultBox.js
Expand Up @@ -56,7 +56,7 @@ class ResultBox extends React.Component {
}}>
{this.props.t('Okay')}
</Button>
{this.isNotYetFollowed(this.props.reciepientId) ?
{this.props.reciepientId && this.isNotYetFollowed(this.props.reciepientId) ?
<Button className={`add-follwed-account-button ${styles.addFollowedAccountButton}`}
onClick={() => {
this.props.nextStep({ address: this.props.reciepientId });
Expand Down

0 comments on commit 5dc0969

Please sign in to comment.