diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-29 06:11:53 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-29 06:11:53 +0800 |
commit | ec01893e9c987fcbd3fd7bcb4ec34498a6f516cc (patch) | |
tree | af7714c79643c1bbf51a2c8ac19277205ef4e310 /packages/instant/src/redux | |
parent | f4cc14f43862c639d2cf9f6e5359e4822f1bcacf (diff) | |
download | dexon-0x-contracts-ec01893e9c987fcbd3fd7bcb4ec34498a6f516cc.tar.gz dexon-0x-contracts-ec01893e9c987fcbd3fd7bcb4ec34498a6f516cc.tar.zst dexon-0x-contracts-ec01893e9c987fcbd3fd7bcb4ec34498a6f516cc.zip |
fetchedVia -> fetchOrigin
Diffstat (limited to 'packages/instant/src/redux')
-rw-r--r-- | packages/instant/src/redux/async_data.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/redux/async_data.ts b/packages/instant/src/redux/async_data.ts index 6a1d2ed00..dc73fd9af 100644 --- a/packages/instant/src/redux/async_data.ts +++ b/packages/instant/src/redux/async_data.ts @@ -84,7 +84,7 @@ export const asyncData = { fetchCurrentBuyQuoteAndDispatchToStore: async ( state: State, dispatch: Dispatch, - options: { updateSilently: boolean; fetchedVia: QuoteFetchOrigin }, + options: { updateSilently: boolean; fetchOrigin: QuoteFetchOrigin }, ) => { const { buyOrderState, providerState, selectedAsset, selectedAssetUnitAmount, affiliateInfo } = state; const assetBuyer = providerState.assetBuyer; @@ -102,7 +102,7 @@ export const asyncData = { { setPending: !options.updateSilently, dispatchErrors: !options.updateSilently, - fetchedVia: options.fetchedVia, + fetchOrigin: options.fetchOrigin, affiliateInfo, }, ); |