diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-06-25 21:57:54 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 21:57:54 +0300 |
commit | 665917f67707a40604157c7e7ccf26837e18aa81 (patch) | |
tree | 2ba034a7460a1933aa8845330658b3ca777a51ee /src/pages/AuthPage/AuthPage.tsx | |
parent | 9dfc98d5014f91afb45ad4eebbe9f0f704ddfdf5 (diff) | |
parent | 2c6946b35aa2a756230bb96e69302c08fd8068ee (diff) | |
download | which-ui-665917f67707a40604157c7e7ccf26837e18aa81.tar.gz |
Merge pull request #44 from which-ecosystem/forms
Forms
Diffstat (limited to 'src/pages/AuthPage/AuthPage.tsx')
-rw-r--r-- | src/pages/AuthPage/AuthPage.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pages/AuthPage/AuthPage.tsx b/src/pages/AuthPage/AuthPage.tsx index dc90c01..d2c2eec 100644 --- a/src/pages/AuthPage/AuthPage.tsx +++ b/src/pages/AuthPage/AuthPage.tsx @@ -5,7 +5,7 @@ import SignUpForm from './SignUpForm'; interface PropTypes { - logIn: (name: string, password: string) => Promise<boolean>; + logIn: (name: string, password: string, remember?: boolean) => Promise<boolean>; } const useStyles = makeStyles({ @@ -29,8 +29,8 @@ const AuthPage: React.FC<PropTypes> = ({ logIn }) => { }; const footerInfo = { - signIn: ['Don\'t have an account?', 'Sign in'], - signUp: ['Already have an account?', 'Sign up'] + signIn: ['Don\'t have an account?', 'Sign up'], + signUp: ['Already have an account?', 'Sign in'] }; return ( |