Skip to content

Commit b38509c

Browse files
committed
Merge pull request facebook#4540 from scottburch/ie8-fix
removed dangling comma that messes up loading in IE8
2 parents 0f963bb + 1da2b29 commit b38509c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/react/react.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable comma-dangle */
12
'use strict';
23

34
var React = require('./lib/React');
@@ -39,7 +40,7 @@ if (process.env.NODE_ENV !== 'production') {
3940
'react-dom/server',
4041
React,
4142
React.renderToStaticMarkup
42-
),
43+
)
4344
};
4445
// Export a wrapped object. We'll use assign and take advantage of the fact
4546
// that this will override the original methods in React.

0 commit comments

Comments
 (0)