Skip to content

Commit

Permalink
Merge pull request remix-run#933 from evanx/master
Browse files Browse the repository at this point in the history
Minor fix in example: remove unused argument
  • Loading branch information
gaearon committed Mar 10, 2015
2 parents f7b86bc + 4a0782b commit ea398cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/master-detail/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ var Contact = React.createClass({

mixins: [ Router.Navigation, Router.State ],

getStateFromStore: function (id) {
id = this.getParams().id;
getStateFromStore: function () {
var id = this.getParams().id;
return {
contact: ContactStore.getContact(id)
};
Expand Down

0 comments on commit ea398cc

Please sign in to comment.