Skip to content

Commit

Permalink
fix(coinify history btc amount conversion)
Browse files Browse the repository at this point in the history
  • Loading branch information
sixtedemaupeou committed May 29, 2018
1 parent e939b31 commit c6fac6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ const OrderHistory = (props) => {
<Text size='15px' weight={400}>
<FormattedMessage id='scenes.buysell.coinifycheckout.trades.pending' defaultMessage='Pending Orders' />
</Text>
<OrderHistoryTable trades={filter(isPending, trades)} conversion={100} handleFinishTrade={trade => finishTrade(trade)} handleDetailsClick={trade => showModal('CoinifyTradeDetails', { trade })} handleTradeCancel={cancelTrade} status={status} cancelTradeId={cancelTradeId} />
<OrderHistoryTable trades={filter(isPending, trades)} conversion={1e8} handleFinishTrade={trade => finishTrade(trade)} handleDetailsClick={trade => showModal('CoinifyTradeDetails', { trade })} handleTradeCancel={cancelTrade} status={status} cancelTradeId={cancelTradeId} />
</OrderHistoryContent>
<OrderHistoryContent>
<Text size='15px' weight={400}>
<FormattedMessage id='scenes.buysell.coinifycheckout.trades.completed' defaultMessage='Completed Orders' />
</Text>
<OrderHistoryTable trades={filter(isCompleted, trades)} conversion={100} handleDetailsClick={trade => showModal('CoinifyTradeDetails', { trade })} />
<OrderHistoryTable trades={filter(isCompleted, trades)} conversion={1e8} handleDetailsClick={trade => showModal('CoinifyTradeDetails', { trade })} />
</OrderHistoryContent>
</OrderHistoryWrapper>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { StepTransition } from 'components/Utilities/Stepper'
import { Form, ColLeft, InputWrapper, PartnerHeader, PartnerSubHeader, ColRight, ColRightInner, Row } from 'components/BuySell/Signup'
import { SelectBoxCountry, TextBox } from 'components/Form'

const DetailsInputWrapper = styled(InputWrapper) `
const DetailsInputWrapper = styled(InputWrapper)`
& > * {
padding-bottom: 12px;
}
Expand Down

0 comments on commit c6fac6d

Please sign in to comment.