Skip to content

Commit

Permalink
fix(Safecharge): remove embed=true
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Feb 12, 2019
1 parent 96b886d commit 8220154
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
Expand Up @@ -270,7 +270,7 @@ class ISignThisContainer extends Component {
const srcUrl =
isxType !== 'Trade'
? `${iSignThisDomain}/landing/${iSignThisId}?embed=true` // Url for KYC
: `${iSignThisId}?embed=true` // Url for payment
: `${iSignThisId}` // Url for payment

return (
<Fragment>
Expand Down
Expand Up @@ -12,7 +12,6 @@ import Confirm from './Confirm'
import ISignThis from './ISignThis'
import { ModalHeader, ModalBody, Text } from 'blockchain-info-components'
import { FormattedMessage } from 'react-intl'
import { getData } from './selectors'
import { path } from 'ramda'
import media from 'services/ResponsiveService'

Expand Down Expand Up @@ -114,7 +113,6 @@ CoinifyExchangeData.propTypes = {
}

const mapStateToProps = state => ({
data: getData(state),
signupStep: path(['coinify', 'signupStep'], state),
signupComplete: path(['coinify', 'signupComplete'], state),
trade: selectors.core.data.coinify.getTrade(state).getOrElse({})
Expand Down

This file was deleted.

0 comments on commit 8220154

Please sign in to comment.