diff options
author | Steve Klebanoff <steve@0xproject.com> | 2018-11-30 07:44:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-30 07:44:07 +0800 |
commit | fc3641b49938ea9dc5e77e633e798ca19aa812ff (patch) | |
tree | 8eb14525cab2ac8485202ff28d6f66e06290169f /packages/instant/src/containers | |
parent | d4c439b27703b6855a6f7da60cf5a249d82b6b81 (diff) | |
parent | 5c66f9117fa0bf6a5be29243dbecbfe016b95345 (diff) | |
download | dexon-sol-tools-fc3641b49938ea9dc5e77e633e798ca19aa812ff.tar dexon-sol-tools-fc3641b49938ea9dc5e77e633e798ca19aa812ff.tar.gz dexon-sol-tools-fc3641b49938ea9dc5e77e633e798ca19aa812ff.tar.bz2 dexon-sol-tools-fc3641b49938ea9dc5e77e633e798ca19aa812ff.tar.lz dexon-sol-tools-fc3641b49938ea9dc5e77e633e798ca19aa812ff.tar.xz dexon-sol-tools-fc3641b49938ea9dc5e77e633e798ca19aa812ff.tar.zst dexon-sol-tools-fc3641b49938ea9dc5e77e633e798ca19aa812ff.zip |
Merge pull request #1343 from 0xProject/feature/instant/quote-analytics
[instant] Quote analytics
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 a39bc46a2..cb9df527e 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 } from '../types'; +import { AffiliateInfo, ERC20Asset, Omit, OrderProcessState, QuoteFetchOrigin } from '../types'; import { buyQuoteUpdater } from '../util/buy_quote_updater'; export interface SelectedERC20AssetAmountInputProps { @@ -88,7 +88,7 @@ const mapDispatchToProps = ( // even if it's debounced, give them the illusion it's loading dispatch(actions.setQuoteRequestStatePending()); // tslint:disable-next-line:no-floating-promises - debouncedUpdateBuyQuoteAsync(assetBuyer, dispatch, asset, value, { + debouncedUpdateBuyQuoteAsync(assetBuyer, dispatch, asset, value, QuoteFetchOrigin.Manual, { setPending: true, dispatchErrors: true, affiliateInfo, |