Merge pull request #749 from lbryio/fixemailverifyissue

Added currentBalance to props in modal credit intro
This commit is contained in:
Liam Cardenas 2017-11-15 10:57:49 -05:00 committed by GitHub
commit 4adde1ba57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ import { CreditAmount, CurrencySymbol } from "component/common";
import Link from "component/link/index";
const ModalCreditIntro = props => {
const { closeModal, totalRewardValue, verifyAccount } = props;
const { closeModal, totalRewardValue, currentBalance, verifyAccount } = props;
const totalRewardRounded = Math.round(totalRewardValue / 10) * 10;
return (