diff --git a/src/component/administration/user/CreateNewUserForm.tsx b/src/component/administration/user/CreateNewUserForm.tsx index c7a796fe..36ac2844 100644 --- a/src/component/administration/user/CreateNewUserForm.tsx +++ b/src/component/administration/user/CreateNewUserForm.tsx @@ -47,7 +47,6 @@ const CreateNewUserForm: React.FC = (props) => { const fetchUsernameExists = useRef( _.debounce((username) => { dispatch(doesUsernameExists(username)).then((action) => { - console.debug(username, action); if (action.status === AsyncActionStatus.SUCCESS) { const actionSuccess = action as AsyncActionSuccess; setUsernameExists(actionSuccess.payload);