Skip to content

Commit

Permalink
Merge pull request #7164 from TheThingsNetwork/fix/purge-user
Browse files Browse the repository at this point in the history
Fix purging in the users table
  • Loading branch information
ryaplots committed Jul 4, 2024
2 parents c53fc4f + 9d1e29d commit bec2432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/webui/console/containers/users-table/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const UsersTable = props => {
const handlePurge = React.useCallback(
async id => {
try {
await dispatch(attachPromise(deleteUser(id)), { purge: true })
await dispatch(attachPromise(deleteUser(id, { purge: true })))
toast({
title: id,
message: m.purgeSuccess,
Expand Down

0 comments on commit bec2432

Please sign in to comment.