Loëck Vézien
7 years ago
No known key found for this signature in database
GPG Key ID: CBCDCE384E853AC4
4 changed files with
9 additions and
9 deletions
-
src/components/modals/Receive/01-step-account.js
-
src/components/modals/Receive/03-step-confirm-address.js
-
src/components/modals/Receive/04-step-receive-funds.js
-
src/components/modals/StepConnectDevice.js
|
|
@ -10,7 +10,7 @@ import Label from 'components/base/Label' |
|
|
|
import SelectAccount from 'components/SelectAccount' |
|
|
|
|
|
|
|
type Props = { |
|
|
|
account: Account | null, |
|
|
|
account: ?Account, |
|
|
|
onChangeAccount: Function, |
|
|
|
t: T, |
|
|
|
} |
|
|
|
|
|
@ -31,9 +31,9 @@ const Text = styled(Box).attrs({ |
|
|
|
` |
|
|
|
|
|
|
|
type Props = { |
|
|
|
account: Account | null, |
|
|
|
addressVerified: boolean | null, |
|
|
|
device: Device | null, |
|
|
|
account: ?Account, |
|
|
|
addressVerified: ?boolean, |
|
|
|
device: ?Device, |
|
|
|
onCheck: Function, |
|
|
|
t: T, |
|
|
|
} |
|
|
|
|
|
@ -12,8 +12,8 @@ import SelectAccount from 'components/SelectAccount' |
|
|
|
import RequestAmount from 'components/RequestAmount' |
|
|
|
|
|
|
|
type Props = { |
|
|
|
account: Account | null, |
|
|
|
addressVerified: boolean | null, |
|
|
|
account: ?Account, |
|
|
|
addressVerified: ?boolean, |
|
|
|
amount: string | number, |
|
|
|
onChangeAmount: Function, |
|
|
|
onVerify: Function, |
|
|
|
|
|
@ -11,9 +11,9 @@ import DeviceMonit from 'components/DeviceMonitNew' |
|
|
|
|
|
|
|
type Props = { |
|
|
|
accountName?: string, |
|
|
|
account?: Account | null, |
|
|
|
currency?: Currency | null, |
|
|
|
deviceSelected: Device | null, |
|
|
|
account?: ?Account, |
|
|
|
currency?: ?Currency, |
|
|
|
deviceSelected: ?Device, |
|
|
|
onChangeDevice: Function, |
|
|
|
onStatusChange: Function, |
|
|
|
} |
|
|
|