Skip to content

Commit

Permalink
fix: remove unused parameter erroring on Firefox
Browse files Browse the repository at this point in the history
Fixes #486.
  • Loading branch information
tkurki committed Mar 29, 2018
1 parent 1c0719d commit 108d6fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions admin-ui/src/views/Security.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class Security extends Component {
})
}

userClicked (event, user, index) {
userClicked (user, index) {
console.log(JSON.stringify(user))
this.setState(
{
Expand Down Expand Up @@ -296,7 +296,6 @@ class Security extends Component {
key={user.userId}
onClick={this.userClicked.bind(
this,
event,
user,
index
)}
Expand Down

0 comments on commit 108d6fa

Please sign in to comment.