diff --git a/packages/blockchain-wallet-v4-frontend/src/components/SimpleBuy/MultiRowContainer.tsx b/packages/blockchain-wallet-v4-frontend/src/components/SimpleBuy/MultiRowContainer.tsx index 2074ed08589..3211532aabb 100644 --- a/packages/blockchain-wallet-v4-frontend/src/components/SimpleBuy/MultiRowContainer.tsx +++ b/packages/blockchain-wallet-v4-frontend/src/components/SimpleBuy/MultiRowContainer.tsx @@ -4,7 +4,7 @@ const MultiRowContainer = styled.div` position: relative; display: flex; flex-direction: column; - width: 230px; + width: 100%; color: ${props => props.theme.grey800}; margin-left: 16px; ` diff --git a/packages/blockchain-wallet-v4-frontend/src/modals/SimpleBuy/OrderSummary/template.success.tsx b/packages/blockchain-wallet-v4-frontend/src/modals/SimpleBuy/OrderSummary/template.success.tsx index f7daa834a2e..eca77e0d441 100644 --- a/packages/blockchain-wallet-v4-frontend/src/modals/SimpleBuy/OrderSummary/template.success.tsx +++ b/packages/blockchain-wallet-v4-frontend/src/modals/SimpleBuy/OrderSummary/template.success.tsx @@ -93,27 +93,6 @@ const Success: React.FC = props => {
- {/* {props.order.state === 'PENDING_DEPOSIT' && - !props.order.paymentMethodId && ( - - )} */} diff --git a/packages/blockchain-wallet-v4-frontend/src/modals/SimpleBuy/PaymentMethods/Payments/index.tsx b/packages/blockchain-wallet-v4-frontend/src/modals/SimpleBuy/PaymentMethods/Payments/index.tsx index c25519e738e..2a5a85779e0 100644 --- a/packages/blockchain-wallet-v4-frontend/src/modals/SimpleBuy/PaymentMethods/Payments/index.tsx +++ b/packages/blockchain-wallet-v4-frontend/src/modals/SimpleBuy/PaymentMethods/Payments/index.tsx @@ -101,7 +101,7 @@ class Payments extends PureComponent<InjectedFormProps<{}, Props> & Props> { <Icon size='32px' color='fiat' - name={value.currency === 'EUR' ? 'eur' : 'gbp'} + name={value.currency.toLowerCase() as 'eur' | 'gbp'} /> ) }