remove console.logs

pull/707/head
Anton Mushnin 2022-11-16 18:36:41 +03:00
rodzic 996f22727e
commit ebc4f461d4
2 zmienionych plików z 0 dodań i 2 usunięć

Wyświetl plik

@ -11,7 +11,6 @@ const ForgotPassword = ({ toggleModal }) => {
useEffect(() => {
if (!data) return;
console.log(toggleModal);
toggleModal({ type: MODAL_TYPES.OFF });
}, [data, toggleModal, toast]);

Wyświetl plik

@ -20,7 +20,6 @@ const SignUp = ({ toggleModal }) => {
const [showPassword, togglePassword] = useState(false);
useEffect(() => {
console.log(toggleModal);
if (isSuccess) {
toggleModal({ type: MODAL_TYPES.OFF });
}