From 28f1b32e6877779648a1cb01507391f747204ff5 Mon Sep 17 00:00:00 2001 From: lukaskabc Date: Tue, 23 Jul 2024 12:48:55 +0200 Subject: [PATCH] remove console debug --- src/component/administration/user/CreateNewUserForm.tsx | 1 - 1 file changed, 1 deletion(-) 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);