From 9c7ef68530e42de985e1c8df6657f616b4a5ba24 Mon Sep 17 00:00:00 2001 From: Jack Reed <phillipjreed@gmail.com> Date: Wed, 3 Oct 2018 13:06:57 -0600 Subject: [PATCH] fix linting issue --- src/components/Workspace.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/components/Workspace.js b/src/components/Workspace.js index 4857eee8c..096303ce5 100644 --- a/src/components/Workspace.js +++ b/src/components/Workspace.js @@ -1,9 +1,6 @@ import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; -// import { actions } from '../store'; -// import Window from './Window'; - /** * Represents a work area that contains any number of windows @@ -18,7 +15,9 @@ const Workspace = ({ windows }) => ( className="window" key={window.id} id={window.id} - >{window.manifestId}</div> + > + {window.manifestId} + </div> )) } </div> @@ -39,5 +38,4 @@ const mapStateToProps = state => ( } ); -// const mapDispatchToProps = dispatch => ({}); -export default connect(mapStateToProps)(Workspace); // mapDispatchToProps, +export default connect(mapStateToProps)(Workspace); -- GitLab