Browse Source

fix(channels): syntax fix

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
cea40d560b
  1. 35
      app/components/Channels/Channels.js

35
app/components/Channels/Channels.js

@ -100,25 +100,24 @@ const Channels = ({
explorerLinkBase={explorerLinkBase}
/>
)
} else {
return (
<Channel
key={index}
ticker={ticker}
channel={channel}
setChannel={setChannel}
currentTicker={currentTicker}
/>
)
}
}
})
:
'Loading...'
}
</ul>
</div>
)
return (
<Channel
key={index}
ticker={ticker}
channel={channel}
setChannel={setChannel}
currentTicker={currentTicker}
/>
)
})
:
'Loading...'
}
</ul>
</div>
)
}
Channels.propTypes = {
fetchChannels: PropTypes.func.isRequired,

Loading…
Cancel
Save