diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-29 06:11:06 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-29 06:11:06 +0800 |
commit | f4cc14f43862c639d2cf9f6e5359e4822f1bcacf (patch) | |
tree | 02d2d8e4e2851145053f0e3ee0dd0d353d0e3efa /packages/instant/src/containers | |
parent | ca894935f269a385f28e5d3a51720282ab403697 (diff) | |
download | dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.gz dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.bz2 dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.lz dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.xz dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.tar.zst dexon-sol-tools-f4cc14f43862c639d2cf9f6e5359e4822f1bcacf.zip |
QuoteFetchedVia -> QuoteFetchOrigin
Diffstat (limited to 'packages/instant/src/containers')
-rw-r--r-- | packages/instant/src/containers/selected_erc20_asset_amount_input.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/containers/selected_erc20_asset_amount_input.ts b/packages/instant/src/containers/selected_erc20_asset_amount_input.ts index 1e9b22617..a2d523b82 100644 --- a/packages/instant/src/containers/selected_erc20_asset_amount_input.ts +++ b/packages/instant/src/containers/selected_erc20_asset_amount_input.ts @@ -10,7 +10,7 @@ import { ERC20AssetAmountInput, ERC20AssetAmountInputProps } from '../components import { Action, actions } from '../redux/actions'; import { State } from '../redux/reducer'; import { ColorOption } from '../style/theme'; -import { AffiliateInfo, ERC20Asset, Omit, OrderProcessState, QuoteFetchedVia } from '../types'; +import { AffiliateInfo, ERC20Asset, Omit, OrderProcessState, QuoteFetchOrigin } from '../types'; import { buyQuoteUpdater } from '../util/buy_quote_updater'; export interface SelectedERC20AssetAmountInputProps { @@ -92,7 +92,7 @@ const mapDispatchToProps = ( setPending: true, dispatchErrors: true, affiliateInfo, - fetchedVia: QuoteFetchedVia.Manual, + fetchedVia: QuoteFetchOrigin.Manual, }); } }, |