1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 08:37:59 +02:00

Fix trailing comma from previous PR merge

Turns out this is actually illegal in ES6 but on some version of babel,
they don’t care.

Might be an ES7 thing though:
http://www.2ality.com/2015/11/trailing-comma-parameters.html
This commit is contained in:
Brett Sun 2015-12-02 18:28:30 +01:00
parent 4664a48898
commit 594853535b

View File

@ -44,7 +44,7 @@ let RegisterPiece = React.createClass( {
return mergeOptions(
UserStore.getState(),
WhitelabelStore.getState(),
PieceListStore.getState(),
PieceListStore.getState()
);
},