Skip to content

Commit

Permalink
fix yarn issues
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed Jun 18, 2018
1 parent 9cb0eff commit fc78746
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 19 deletions.
@@ -1,10 +1,8 @@
import React from 'react'
import { FormattedMessage } from 'react-intl'
import styled from 'styled-components'
import { Button, Link, Text, Icon } from 'blockchain-info-components'
import { spacing } from 'services/StyleService'

import { reduxForm } from 'redux-form'
import { Button, Link, Text } from 'blockchain-info-components'
import { SecurityComponent, SecurityContainer, SecurityDescription, SecurityHeader, SecurityIcon, SecuritySummary, IconContainer } from 'components/Security'

import ChangeEmailSteps from '../Components/ChangeEmailSteps'
Expand Down
@@ -1,13 +1,14 @@
import React from 'react'
import { connect } from 'react-redux'
import { bindActionCreators, compose } from 'redux'
import ui from 'redux-ui'
import { formValueSelector } from 'redux-form'

import { actions } from 'data'
import Google from './template.success'
import { getData } from './selectors'
import Success from './template.success'
import Error from './template.error'
import Loading from './template.loading'
import ui from 'redux-ui'
import { formValueSelector } from 'redux-form'

class GoogleAuthContainer extends React.PureComponent {
constructor (props) {
Expand Down Expand Up @@ -43,7 +44,7 @@ class GoogleAuthContainer extends React.PureComponent {
const { data, ui, ...rest } = this.props

return data.cata({
Success: (value) => <Google
Success: (value) => <Success
data={value}
handleClick={this.handleClick}
onSubmit={this.onSubmit}
Expand Down
@@ -1,7 +1,7 @@
import React from 'react'
import PropTypes from 'prop-types'
import { FormattedMessage } from 'react-intl'
import { Button, Text, Icon } from 'blockchain-info-components'
import { Button, Text } from 'blockchain-info-components'
import styled from 'styled-components'
import QRCodeReact from 'qrcode.react'
import { Field, reduxForm } from 'redux-form'
Expand Down
@@ -1,13 +1,14 @@
import React from 'react'
import { connect } from 'react-redux'
import { bindActionCreators, compose } from 'redux'
import { actions } from 'data'
import SmsAuth from './template.success'
import ui from 'redux-ui'
import { formValueSelector } from 'redux-form'

import { getData } from './selectors'
import { actions } from 'data'
import Success from './template.success'
import Error from './template.error'
import Loading from './template.loading'
import ui from 'redux-ui'
import { formValueSelector } from 'redux-form'

class SmsAuthContainer extends React.PureComponent {
constructor (props) {
Expand Down Expand Up @@ -54,7 +55,7 @@ class SmsAuthContainer extends React.PureComponent {
const { data, ui, verificationCode, goBack, ...rest } = this.props

return data.cata({
Success: (value) => <SmsAuth
Success: (value) => <Success
data={value}
handleClick={this.handleClick}
onSubmit={this.onSubmit}
Expand Down
@@ -1,9 +1,10 @@
import React, { Fragment } from 'react'
import PropTypes from 'prop-types'
import { FormattedMessage } from 'react-intl'
import { Button, Text, Link } from 'blockchain-info-components'
import styled from 'styled-components'
import { Field, reduxForm } from 'redux-form'

import { Button, Text, Link } from 'blockchain-info-components'
import { TextBox, PhoneNumberBox, Form } from 'components/Form'
import { required } from 'services/FormHelper'

Expand Down
@@ -1,13 +1,13 @@

import React from 'react'
import { connect } from 'react-redux'
import { bindActionCreators, compose } from 'redux'
import ui from 'redux-ui'

import { actions } from 'data'
import Yubikey from './template.success'
import { getData } from './selectors'
import Success from './template.success'
import Error from './template.error'
import Loading from './template.loading'
import ui from 'redux-ui'

class YubikeyContainer extends React.PureComponent {
constructor (props) {
Expand Down Expand Up @@ -47,7 +47,7 @@ class YubikeyContainer extends React.PureComponent {
const { data, ui, ...rest } = this.props

return data.cata({
Success: (value) => <Yubikey
Success: (value) => <Success
data={value}
handleClick={this.handleClick}
onSubmit={this.onSubmit}
Expand Down
@@ -1,9 +1,10 @@
import React from 'react'
import PropTypes from 'prop-types'
import { FormattedMessage } from 'react-intl'
import { Text, Icon, Button } from 'blockchain-info-components'
import styled from 'styled-components'
import { reduxForm } from 'redux-form'

import { Text, Button } from 'blockchain-info-components'
import { spacing } from 'services/StyleService'

const AuthenticatorSummary = styled.div`
Expand Down

0 comments on commit fc78746

Please sign in to comment.