Skip to content

Commit ef14a40

Browse files
committed
Fixes CI
1 parent 4aba270 commit ef14a40

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/components/createConnect.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export default function createConnect(React) {
7878

7979
return function wrapWithConnect(WrappedComponent) {
8080
class Connect extends Component {
81-
8281

8382
shouldComponentUpdate(nextProps, nextState) {
8483
if (!pure) {
@@ -206,8 +205,8 @@ export default function createConnect(React) {
206205
);
207206
}
208207
}
209-
//adding properties in this way
210-
//prevents ie8 from breaking
208+
// adding properties in this way
209+
// prevents ie8 from breaking
211210
Connect.displayName = `Connect(${getDisplayName(WrappedComponent)})`;
212211
Connect.WrappedComponent = WrappedComponent;
213212

src/components/createProvider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ export default function createProvider(React) {
9292
return Children.only(children);
9393
}
9494
}
95-
//adding properties in this way
96-
//prevents ie8 from breaking
95+
// adding properties in this way
96+
// prevents ie8 from breaking
9797
Provider.childContextTypes = {
9898
store: storeShape.isRequired
9999
};

0 commit comments

Comments
 (0)