Skip to content

Commit 044fe23

Browse files
committed
Trivial missing comma in RouteStore
as reported by the jsx compiler when attempting to pack things up: ``` ERROR in ./~/react-router/modules/stores/RouteStore.js Module build failed: Error: Parse Error: Line 108: Unexpected identifier at throwError (.../node_modules/jsx-loader/node_modules/react-tools/node_modules/esprima-fb/esprima.js:2278:21) at throwUnexpected (.../node_modules/jsx-loader/node_modules/react-tools/node_modules/esprima-fb/esprima.js:2322:13) ``` I hope this helps
1 parent 273625a commit 044fe23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/stores/RouteStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ var RouteStore = {
100100
props.children = RouteStore.registerChildren(props.children, route);
101101

102102
return route;
103-
}
103+
},
104104

105105
/**
106106
* Registers many children routes at once, always returning an array.

0 commit comments

Comments
 (0)