1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: remove stray debugger statement (#657)

This commit is contained in:
olav 2022-02-02 09:43:58 +01:00 committed by GitHub
parent 5e441cfc6b
commit 23c6c0cd8f

View File

@ -65,7 +65,6 @@ function AddUserComponent({ roles, addUserToRole }) {
};
const handleSubmit = async evt => {
debugger;
evt.preventDefault();
await addUserToRole(user.id, role.id);
setUser(undefined);