Browse Source

(fix): linting error

renovate/lint-staged-8.x
Jack Mallers 8 years ago
parent
commit
7df0493b18
  1. 2
      app/reducers/info.js

2
app/reducers/info.js

@ -51,7 +51,7 @@ infoSelectors.isTestnet = createSelector(
infoSelectors.explorerLinkBase = createSelector(
infoSelectors.isTestnet,
isTestnet => isTestnet ? 'https://testnet.smartbit.com.au' : 'https://smartbit.com.au'
isTestnet => (isTestnet ? 'https://testnet.smartbit.com.au' : 'https://smartbit.com.au')
)
export { infoSelectors }

Loading…
Cancel
Save