diff --git a/src/components/modals/Receive/01-step-account.js b/src/components/modals/Receive/01-step-account.js
deleted file mode 100644
index 8e8a6de9..00000000
--- a/src/components/modals/Receive/01-step-account.js
+++ /dev/null
@@ -1,25 +0,0 @@
-// @flow
-
-import React from 'react'
-
-import type { Account } from '@ledgerhq/live-common/lib/types'
-import type { T } from 'types/common'
-
-import TrackPage from 'analytics/TrackPage'
-import Box from 'components/base/Box'
-import Label from 'components/base/Label'
-import SelectAccount from 'components/SelectAccount'
-
-type Props = {
- account: ?Account,
- onChangeAccount: Function,
- t: T,
-}
-
-export default (props: Props) => (
-
-
-
-
-
-)
diff --git a/src/components/modals/Receive/02-step-connect-device.js b/src/components/modals/Receive/02-step-connect-device.js
deleted file mode 100644
index 82e61aeb..00000000
--- a/src/components/modals/Receive/02-step-connect-device.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import React, { Component, Fragment } from 'react'
-import TrackPage from 'analytics/TrackPage'
-import StepConnectDevice from '../StepConnectDevice'
-
-class ReceiveStepConnectDevice extends Component<*> {
- render() {
- return (
-
-
-
-
- )
- }
-}
-
-export default ReceiveStepConnectDevice
diff --git a/src/components/modals/Receive/03-step-confirm-address.js b/src/components/modals/Receive/03-step-confirm-address.js
deleted file mode 100644
index 27e859ab..00000000
--- a/src/components/modals/Receive/03-step-confirm-address.js
+++ /dev/null
@@ -1,59 +0,0 @@
-// @flow
-
-import React, { Fragment } from 'react'
-import styled from 'styled-components'
-
-import type { Account } from '@ledgerhq/live-common/lib/types'
-import type { Device, T } from 'types/common'
-
-import TrackPage from 'analytics/TrackPage'
-import Box from 'components/base/Box'
-import CurrentAddressForAccount from 'components/CurrentAddressForAccount'
-import DeviceConfirm from 'components/DeviceConfirm'
-
-const Container = styled(Box).attrs({
- alignItems: 'center',
- fontSize: 4,
- color: 'dark',
- px: 7,
-})``
-
-const Title = styled(Box).attrs({
- ff: 'Museo Sans|Regular',
- fontSize: 6,
- mb: 1,
-})``
-
-const Text = styled(Box).attrs({
- color: 'smoke',
-})`
- text-align: center;
-`
-
-type Props = {
- account: ?Account,
- addressVerified: ?boolean,
- device: ?Device,
- t: T,
-}
-
-export default (props: Props) => (
-
-
- {props.addressVerified === false ? (
-
- {props.t('app:receive.steps.confirmAddress.error.title')}
- {props.t('app:receive.steps.confirmAddress.error.text')}
-
-
- ) : (
-
- {props.t('app:receive.steps.confirmAddress.action')}
- {props.t('app:receive.steps.confirmAddress.text')}
- {props.account && }
- {props.device &&
- props.account && }
-
- )}
-
-)
diff --git a/src/components/modals/Receive/04-step-receive-funds.js b/src/components/modals/Receive/04-step-receive-funds.js
deleted file mode 100644
index 8dcceb2d..00000000
--- a/src/components/modals/Receive/04-step-receive-funds.js
+++ /dev/null
@@ -1,48 +0,0 @@
-// @flow
-
-import React from 'react'
-
-import type { Account } from '@ledgerhq/live-common/lib/types'
-import type { T } from 'types/common'
-
-import TrackPage from 'analytics/TrackPage'
-import Box from 'components/base/Box'
-import CurrentAddressForAccount from 'components/CurrentAddressForAccount'
-import Label from 'components/base/Label'
-import RequestAmount from 'components/RequestAmount'
-
-type Props = {
- account: ?Account,
- addressVerified: ?boolean,
- amount: string | number,
- onChangeAmount: Function,
- onVerify: Function,
- t: T,
-}
-
-export default (props: Props) => (
-
-
-
-
-
-
- {props.account && (
-
- )}
-
-)