diff --git a/js/src/modals/SMSVerification/GatherData/gatherData.js b/js/src/modals/SMSVerification/GatherData/gatherData.js index 0a293e650..9eb6e6883 100644 --- a/js/src/modals/SMSVerification/GatherData/gatherData.js +++ b/js/src/modals/SMSVerification/GatherData/gatherData.js @@ -16,6 +16,7 @@ import React, { Component, PropTypes } from 'react'; import { Checkbox } from 'material-ui'; +import InfoIcon from 'material-ui/svg-icons/action/info-outline'; import SuccessIcon from 'material-ui/svg-icons/navigation/check'; import ErrorIcon from 'material-ui/svg-icons/navigation/close'; @@ -59,12 +60,12 @@ export default class GatherData extends Component { } render () { - const { fee } = this.props.data; const { numberIsValid } = this.state; + // TODO: proper legal text return (
-

{ fee ? `The fee is ${fromWei(fee).toFixed(3)} ETH.` : 'Fetching the fee…' }

+ { this.renderFee() } { this.renderCertified() } { this.renderRequested() } Fetching the fee…

); + } + return ( +
+ +

The fee is { fromWei(fee).toFixed(3) } ETH.

+
+ ); + } + renderCertified () { const { isCertified } = this.props.data;