diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-26 09:53:16 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-26 09:53:16 +0800 |
commit | 948d62200a23b4da59278f976e9757cfc3c9234e (patch) | |
tree | 5157ab8f25a8336be61ed73e8b09aa0485321f7f /packages/instant/public/index.html | |
parent | a2d09a68b0d6d20359916251e0cc795fb600360e (diff) | |
download | dexon-sol-tools-948d62200a23b4da59278f976e9757cfc3c9234e.tar dexon-sol-tools-948d62200a23b4da59278f976e9757cfc3c9234e.tar.gz dexon-sol-tools-948d62200a23b4da59278f976e9757cfc3c9234e.tar.bz2 dexon-sol-tools-948d62200a23b4da59278f976e9757cfc3c9234e.tar.lz dexon-sol-tools-948d62200a23b4da59278f976e9757cfc3c9234e.tar.xz dexon-sol-tools-948d62200a23b4da59278f976e9757cfc3c9234e.tar.zst dexon-sol-tools-948d62200a23b4da59278f976e9757cfc3c9234e.zip |
feat: change network to networkId
Diffstat (limited to 'packages/instant/public/index.html')
-rw-r--r-- | packages/instant/public/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/public/index.html b/packages/instant/public/index.html index 0ee144a28..9f1dfdb64 100644 --- a/packages/instant/public/index.html +++ b/packages/instant/public/index.html @@ -62,7 +62,7 @@ const renderOptionsOverrides = { liquiditySource: liquiditySourceOverride === 'provided' ? [providedOrder] : liquiditySourceOverride, assetData: queryParams.getQueryParamValue('assetData'), - network: +queryParams.getQueryParamValue('network') || undefined, + networkId: +queryParams.getQueryParamValue('networkId') || undefined, defaultAssetBuyAmount: +queryParams.getQueryParamValue('defaultAssetBuyAmount') || undefined, } const renderOptions = Object.assign({}, renderOptionsDefaults, removeUndefined(renderOptionsOverrides)); |