Skip to content

Commit 4256e37

Browse files
authored
Merge pull request #6 from tkc/fix/form
Tiny fix
2 parents 8afc05c + 408e34d commit 4256e37

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/pages/user/login/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export interface LoginProps {
1919
export const Login = (props: LoginProps) => {
2020
return (
2121
<Formik
22-
initialValues={{ email: "email", password: "password", loading: false }}
22+
initialValues={{ email: "", password: "", loading: false }}
2323
onSubmit={(param: FormValues, actions: FormikActions<FormValues>) => {
2424
props.onSubmit(param);
2525
}}

0 commit comments

Comments
 (0)