Skip to content

Commit

Permalink
Merge pull request #1391 from joincivil/dankins/newsroom-apply-fix
Browse files Browse the repository at this point in the history
fix(newsroom-signup): greatThanOrEqualTo should be gte
  • Loading branch information
Dan Kinsley authored Aug 29, 2019
2 parents e9da88b + 295761c commit d9ecc9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/newsroom-signup/src/ApplyToTCR/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const mapStateToProps = (state: any, ownProps: ApplyToTCRStepOwnProps): TApplyTo

const minDeposit = new BigNumber((parameters && parameters[Parameters.minDeposit]) || 0);

const multisigHasMinDeposit = multisigBalance.greaterThanOrEqualTo(minDeposit);
const multisigHasMinDeposit = multisigBalance.gte(minDeposit);

return {
...ownProps,
Expand Down

0 comments on commit d9ecc9a

Please sign in to comment.