From c33dffa9b48892bbfd004fe5ccf574a4047d4080 Mon Sep 17 00:00:00 2001
From: Chris Beer <chris@cbeer.info>
Date: Mon, 15 Nov 2021 12:51:07 -0800
Subject: [PATCH] Fix up some accumulated lint

---
 __tests__/src/components/WorkspaceControlPanelButtons.test.js | 3 +--
 src/components/WorkspaceControlPanel.js                       | 3 +--
 src/containers/WorkspaceControlPanelButtons.js                | 3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/__tests__/src/components/WorkspaceControlPanelButtons.test.js b/__tests__/src/components/WorkspaceControlPanelButtons.test.js
index 37c7eaf10..c94ecdd0d 100644
--- a/__tests__/src/components/WorkspaceControlPanelButtons.test.js
+++ b/__tests__/src/components/WorkspaceControlPanelButtons.test.js
@@ -2,8 +2,7 @@ import React from 'react';
 import { shallow } from 'enzyme';
 import WorkspaceMenuButton from '../../../src/containers/WorkspaceMenuButton';
 import FullScreenButton from '../../../src/containers/FullScreenButton';
-import { WorkspaceControlPanelButtons }
-  from '../../../src/components/WorkspaceControlPanelButtons';
+import { WorkspaceControlPanelButtons } from '../../../src/components/WorkspaceControlPanelButtons';
 import { PluginHook } from '../../../src/components/PluginHook';
 
 describe('WorkspaceControlPanelButtons', () => {
diff --git a/src/components/WorkspaceControlPanel.js b/src/components/WorkspaceControlPanel.js
index 8b7fc2443..de849c8fb 100644
--- a/src/components/WorkspaceControlPanel.js
+++ b/src/components/WorkspaceControlPanel.js
@@ -4,8 +4,7 @@ import classNames from 'classnames';
 import AppBar from '@material-ui/core/AppBar';
 import Toolbar from '@material-ui/core/Toolbar';
 import WorkspaceAddButton from '../containers/WorkspaceAddButton';
-import WorkspaceControlPanelButtons
-  from '../containers/WorkspaceControlPanelButtons';
+import WorkspaceControlPanelButtons from '../containers/WorkspaceControlPanelButtons';
 import Branding from '../containers/Branding';
 import ns from '../config/css-ns';
 
diff --git a/src/containers/WorkspaceControlPanelButtons.js b/src/containers/WorkspaceControlPanelButtons.js
index 28f912a22..eaef08bd7 100644
--- a/src/containers/WorkspaceControlPanelButtons.js
+++ b/src/containers/WorkspaceControlPanelButtons.js
@@ -1,8 +1,7 @@
 import { compose } from 'redux';
 import { withStyles } from '@material-ui/core/styles';
 import { withPlugins } from '../extend/withPlugins';
-import { WorkspaceControlPanelButtons }
-  from '../components/WorkspaceControlPanelButtons';
+import { WorkspaceControlPanelButtons } from '../components/WorkspaceControlPanelButtons';
 
 /**
  *
-- 
GitLab