Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jozsi committed Jun 9, 2018
1 parent 90c320d commit b1f12b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exports.default = function (_ref) {

var fixtureProps = nextProps.fixture[fixtureKey];
var fixtureEnabled = !!fixtureProps;
var NextComponent = fixtureEnabled && hoc ? hoc[Symbol.iterator] ? Component.apply(undefined, _toConsumableArray(hoc))(NextProxy) : Component(NextProxy) : NextProxy;
var NextComponent = fixtureEnabled && hoc ? fixtureProps[Symbol.iterator] ? Component.apply(undefined, _toConsumableArray(fixtureProps))(NextProxy) : Component(NextProxy) : NextProxy;
var nextProxyEl = _react2.default.createElement(NextComponent, Object.assign({}, nextProps, { nextProxy: next() }));

return fixtureEnabled && !hoc ? _react2.default.createElement(
Expand Down

0 comments on commit b1f12b0

Please sign in to comment.