File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
packages/blockchain-wallet-v4-frontend/src/scenes/Login Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1- import React from 'react'
1+ import React , { useEffect } from 'react'
22import { FormattedMessage } from 'react-intl'
33import { useDispatch } from 'react-redux'
44import { Field } from 'redux-form'
Original file line number Diff line number Diff line change @@ -154,6 +154,7 @@ const CheckEmail = (props: Props) => {
154154
155155type Props = OwnProps & {
156156 handleSubmit : ( e ) => void
157+ setStep : ( step : LoginSteps ) => void
157158}
158159
159160export default CheckEmail
Original file line number Diff line number Diff line change 11import React , { useEffect } from 'react'
22import { useDispatch , useSelector } from 'react-redux'
3- import { FormProps , getFormValues , reduxForm } from 'redux-form'
3+ import { getFormValues , reduxForm } from 'redux-form'
44
55import { RemoteDataType } from '@core/types'
66import Form from 'components/Form/Form'
@@ -129,7 +129,7 @@ const Login = (props) => {
129129 trackEvent ( {
130130 key : Analytics . LOGIN_VIEWED ,
131131 properties : {
132- device_origin : productAuthMetadata ?. platform || 'WEB' ,
132+ device_origin : productAuthMetadata ?. platform ?? 'WEB' ,
133133 originalTimestamp : new Date ( ) . toISOString ( )
134134 }
135135 } )
@@ -209,6 +209,7 @@ export type Props = {
209209 handleBackArrowClickWallet : ( ) => void
210210 invalid ?: boolean
211211 isMobilePlatform : boolean
212+ isSofi : boolean
212213 pristine ?: boolean
213214 productAuthMetadata : ProductAuthMetadata
214215 submitting : boolean
You can’t perform that action at this time.
0 commit comments