show effective amount as top bid

This changes amount > effective_amount which provides a more accurate top bid.
This commit is contained in:
Thomas Zarebczan 2017-10-11 09:57:33 -04:00 committed by GitHub
parent d553f9e8e3
commit 0bc3b31946

View file

@ -173,7 +173,7 @@ class PublishForm extends React.PureComponent {
topClaimValue() {
if (!this.claim()) return null;
return parseFloat(this.claim().amount);
return parseFloat(this.claim().effective_amount);
}
myClaimExists() {