Skip to content

Commit

Permalink
fix(build): lint
Browse files Browse the repository at this point in the history
Fix lint errors
  • Loading branch information
adam-26 committed Apr 14, 2018
1 parent d253591 commit 3b8d513
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/CapUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,15 @@ const mapStateToComponents = (
)
});

const renderAttributes = ({ htmlAttributes, bodyAttributes }) => {
const renderAttributes = ({htmlAttributes, bodyAttributes}) => {
updateAttributes(TAG_NAMES.BODY, bodyAttributes);
updateAttributes(TAG_NAMES.HTML, htmlAttributes);
};

export {reducePropsToState, mapStateToComponents, deepEqual, renderAttributes, HEAD_TAG_NAMES};
export {
reducePropsToState,
mapStateToComponents,
deepEqual,
renderAttributes,
HEAD_TAG_NAMES
};

0 comments on commit 3b8d513

Please sign in to comment.