diff --git a/lib/actions/warningActions.js b/lib/actions/warningActions.js
index 2734f87..cb9b41a 100644
--- a/lib/actions/warningActions.js
+++ b/lib/actions/warningActions.js
@@ -56,7 +56,6 @@ export function clearIncompatibleWarning() {
};
}
-
export function setCommunicationErrorWarning(message) {
return dispatch => {
dispatch({
diff --git a/lib/components/AppSidePanelView.jsx b/lib/components/AppSidePanelView.jsx
index 14e3515..2cc5d94 100644
--- a/lib/components/AppSidePanelView.jsx
+++ b/lib/components/AppSidePanelView.jsx
@@ -60,8 +60,7 @@ const AppSidePanelView = ({ selectedTestMode }) => (
>
- )
- }
+ )}
>
);
diff --git a/lib/components/ChannelView.jsx b/lib/components/ChannelView.jsx
index cd4f421..e271a28 100644
--- a/lib/components/ChannelView.jsx
+++ b/lib/components/ChannelView.jsx
@@ -75,7 +75,6 @@ const ChannelView = ({
);
-
const delayLabel = channelMode === SettingsActions.DTM_CHANNEL_MODE.sweep
? 'Sweep delay'
: 'Update period';
@@ -93,22 +92,19 @@ const ChannelView = ({
{ChannelSlider('Channel', channel, onChannelChanged)}
- )
- }
+ )}
{channelMode === SettingsActions.DTM_CHANNEL_MODE.sweep
&& (
{ChannelSlider('Channel Low', channelLow, onChannelLowChanged)}
- )
- }
+ )}
{channelMode === SettingsActions.DTM_CHANNEL_MODE.sweep
&& (
{ChannelSlider('Channel High', channelHigh, onChannelHighChanged)}
- )
- }
+ )}