Skip to content

Commit

Permalink
remove console debug
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaskabc committed Jul 23, 2024
1 parent 515b8b9 commit 28f1b32
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/component/administration/user/CreateNewUserForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ const CreateNewUserForm: React.FC<CreateNewUserFormProps> = (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<boolean>;
setUsernameExists(actionSuccess.payload);
Expand Down

0 comments on commit 28f1b32

Please sign in to comment.