Commit 922a7397 by G

default value for quick login (doesn't show on the screen put pressing the…

default value for quick login (doesn't show on the screen put pressing the button will send those values in the request). Will be removed.
parent 505dd77e
......@@ -24,8 +24,9 @@ const UserLoginScreen: MainStackScreenComponentProps<"userLoginScreen"> = ({ nav
const insets = useSafeAreaInsets();
const { setAuthenticationData, setUserInformations } = useUserAuthenticationContext();
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
// TODO : Remove default value for email and password
const [email, setEmail] = useState("admin");
const [password, setPassword] = useState("admin");
const [error, setError] = useState("");
const authenticationMutation = useMutation({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment