Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit d40f1ed

Browse files
committed
feat(new send): fixed issues after rebase
1 parent a05aeb7 commit d40f1ed

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

  • packages
    • blockchain-wallet-v4-frontend/src/modals/SendCrypto
    • blockchain-wallet-v4/src/redux/walletOptions

packages/blockchain-wallet-v4-frontend/src/modals/SendCrypto/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React, { PureComponent } from 'react'
22
import { connect, ConnectedProps } from 'react-redux'
3-
import { map } from 'ramda'
43
import { bindActionCreators, compose, Dispatch } from 'redux'
54
import { reduxForm } from 'redux-form'
65

packages/blockchain-wallet-v4/src/redux/walletOptions/selectors.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,3 +174,7 @@ export const getIsStakingEnabled = (state: RootState) =>
174174
// crates nabu user at login if credentials aren't in metadata
175175
export const createNabuUserAtLogin = (state: RootState) =>
176176
getWebOptions(state).map(path(['featureFlags', 'createNabuUserAtLogin']))
177+
178+
// new send flow
179+
export const getNewSendFlowEnabled = (state: RootState) =>
180+
getWebOptions(state).map(path(['featureFlags', 'newSendFlow']))

0 commit comments

Comments
 (0)