From 6c9538e4f5b339a3db44486616529b245c8d845b Mon Sep 17 00:00:00 2001 From: btzr-io Date: Thu, 7 May 2020 20:53:00 -0500 Subject: [PATCH] remove unnecessary div wraper --- ui/component/channelSelector/view.jsx | 42 +++++++++++++-------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/ui/component/channelSelector/view.jsx b/ui/component/channelSelector/view.jsx index f9a394e9c..9966401c4 100644 --- a/ui/component/channelSelector/view.jsx +++ b/ui/component/channelSelector/view.jsx @@ -38,28 +38,26 @@ function ChannelSelector(props: Props) { } return ( -
- - - - - - {channels && - channels.map(channel => ( - { - if (selectedChannelUrl !== channel.canonical_url) { - onChannelSelect(channel.canonical_url); - } - }} - > - - - ))} - - -
+ + + + + + {channels && + channels.map(channel => ( + { + if (selectedChannelUrl !== channel.canonical_url) { + onChannelSelect(channel.canonical_url); + } + }} + > + + + ))} + + ); }