Browse Source

Flow

master
Loëck Vézien 7 years ago
parent
commit
5df620a772
No known key found for this signature in database GPG Key ID: CBCDCE384E853AC4
  1. 2
      src/components/modals/Receive/01-step-account.js
  2. 6
      src/components/modals/Receive/03-step-confirm-address.js
  3. 4
      src/components/modals/Receive/04-step-receive-funds.js
  4. 6
      src/components/modals/StepConnectDevice.js

2
src/components/modals/Receive/01-step-account.js

@ -10,7 +10,7 @@ import Label from 'components/base/Label'
import SelectAccount from 'components/SelectAccount' import SelectAccount from 'components/SelectAccount'
type Props = { type Props = {
account: Account | null, account: ?Account,
onChangeAccount: Function, onChangeAccount: Function,
t: T, t: T,
} }

6
src/components/modals/Receive/03-step-confirm-address.js

@ -31,9 +31,9 @@ const Text = styled(Box).attrs({
` `
type Props = { type Props = {
account: Account | null, account: ?Account,
addressVerified: boolean | null, addressVerified: ?boolean,
device: Device | null, device: ?Device,
onCheck: Function, onCheck: Function,
t: T, t: T,
} }

4
src/components/modals/Receive/04-step-receive-funds.js

@ -12,8 +12,8 @@ import SelectAccount from 'components/SelectAccount'
import RequestAmount from 'components/RequestAmount' import RequestAmount from 'components/RequestAmount'
type Props = { type Props = {
account: Account | null, account: ?Account,
addressVerified: boolean | null, addressVerified: ?boolean,
amount: string | number, amount: string | number,
onChangeAmount: Function, onChangeAmount: Function,
onVerify: Function, onVerify: Function,

6
src/components/modals/StepConnectDevice.js

@ -11,9 +11,9 @@ import DeviceMonit from 'components/DeviceMonitNew'
type Props = { type Props = {
accountName?: string, accountName?: string,
account?: Account | null, account?: ?Account,
currency?: Currency | null, currency?: ?Currency,
deviceSelected: Device | null, deviceSelected: ?Device,
onChangeDevice: Function, onChangeDevice: Function,
onStatusChange: Function, onStatusChange: Function,
} }

Loading…
Cancel
Save