#
vincentlu
2025-02-08 38c75eae922335271cbf075acc1a0aa5e11c52b2
rsf-admin/src/page/login/Login.jsx
@@ -16,7 +16,7 @@
    useLogin,
    useNotify,
} from 'react-admin';
import { useForm, Controller } from 'react-hook-form';
import { useForm, Controller, useWatch, FormProvider, useFormContext } from "react-hook-form";
import ProviderChoices from "./ProviderChoices";
import Visibility from '@mui/icons-material/Visibility';
import VisibilityOff from '@mui/icons-material/VisibilityOff';
@@ -28,7 +28,7 @@
    const location = useLocation();
    const { tenantList } = props;
    const { control, watch, handleSubmit, setValue } = useForm();
    const { control, handleSubmit, watch, setValue, getValues } = useForm();
    const [loading, setLoading] = useState(false);
    const [showPassword, setShowPassword] = useState(false);
@@ -163,7 +163,7 @@
                        )}
                    />
                    <Box mt={10}></Box>
                    <Box />
                    <Button
                        type="submit"