We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The button on the far right of the screenshot should say Delete instead of Remove.
The text was updated successfully, but these errors were encountered:
Change copy to be more accurate
d4a2b3b
#2813
a1899b2
Sorry, something went wrong.
I was able to reproduce the issue, looks like the removeUser action is being called with an undefined payload.
removeUser
I looked at AllUsersTableRow.js where the action is called from and I was able to fix by doing this:
AllUsersTableRow.js
// const wrappedDelete = _.curry(onDelete, user) const wrappedDelete = () => { onDelete(user) }
I looked up what _.curry does and I'm not sure it is working as intended
_.curry
great!
alexpaxton
No branches or pull requests
The button on the far right of the screenshot should say Delete instead of Remove.
The text was updated successfully, but these errors were encountered: