Fixed lint
This commit is contained in:
@@ -49,7 +49,9 @@ const LazyConnectDocumentation = createLazyComponent('Documentation', async () =
|
||||
|
||||
ReactGA.initialize('UA-98720122-1');
|
||||
window.onload = () => {
|
||||
const providerName = (window as any).web3 ? utils.web3ProviderToString((window as any).web3.currentProvider) : 'NONE';
|
||||
const providerName = (window as any).web3
|
||||
? utils.web3ProviderToString((window as any).web3.currentProvider)
|
||||
: 'NONE';
|
||||
ReactGA.ga('set', 'dimension1', providerName);
|
||||
};
|
||||
const store: ReduxStore<State> = createStore(reducer);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { ECSignature, ExchangeContractErrs, ZeroEx, ZeroExError, Web3Provider } from '0x.js';
|
||||
import { ECSignature, ExchangeContractErrs, Web3Provider, ZeroEx, ZeroExError } from '0x.js';
|
||||
import { BigNumber } from '@0xproject/utils';
|
||||
import deepEqual = require('deep-equal');
|
||||
import isMobile = require('is-mobile');
|
||||
@@ -313,9 +313,9 @@ export const utils = {
|
||||
let parsedProviderName = provider.constructor.name;
|
||||
if (provider.constructor.name === 'MetamaskInpageProvider') {
|
||||
parsedProviderName = 'METAMASK';
|
||||
} else if (provider.constructor.name === 'EthereumProvider') {
|
||||
} else if (provider.constructor.name === 'EthereumProvider') {
|
||||
parsedProviderName = 'MIST';
|
||||
} else if (provider.constructor.name === 'o') {
|
||||
} else if (provider.constructor.name === 'o') {
|
||||
parsedProviderName = 'PARITY';
|
||||
}
|
||||
return parsedProviderName;
|
||||
@@ -327,5 +327,5 @@ export const utils = {
|
||||
return new Promise<void>((resolve, reject) => {
|
||||
window.onload = () => resolve();
|
||||
});
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user