Fixed lint

This commit is contained in:
Tom Schmidt
2018-03-08 17:08:43 -08:00
parent c009e9979e
commit c78e504bfb
2 changed files with 7 additions and 5 deletions

View File

@@ -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);

View File

@@ -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();
});
}
},
};