aboutsummaryrefslogtreecommitdiff
path: root/src/pages/AuthPage/SignInForm.tsx
diff options
context:
space:
mode:
authorilyayudovin <ilyayudovin123@gmail.com>2020-06-16 18:52:58 +0300
committerilyayudovin <ilyayudovin123@gmail.com>2020-06-16 18:52:58 +0300
commit171af45318b3c27c232fc7d1aee99976dfb3046e (patch)
treefb0dd6c829a41f06c231f72ed8c830a86950a315 /src/pages/AuthPage/SignInForm.tsx
parentad91510c6d0a600cb19678e6f3dd64f66656e01a (diff)
downloadwhich-ui-171af45318b3c27c232fc7d1aee99976dfb3046e.tar.gz
replace interface with simple string for authorization
Diffstat (limited to 'src/pages/AuthPage/SignInForm.tsx')
-rw-r--r--src/pages/AuthPage/SignInForm.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pages/AuthPage/SignInForm.tsx b/src/pages/AuthPage/SignInForm.tsx
index cf68493..ae75541 100644
--- a/src/pages/AuthPage/SignInForm.tsx
+++ b/src/pages/AuthPage/SignInForm.tsx
@@ -5,7 +5,7 @@ import Button from '@material-ui/core/Button';
interface PropTypes {
logIn: (name: string, password: string) => Promise<boolean>;
- setAuthorization: (authorization: { authorize: string }) => void;
+ setAuth: (auth: string) => void;
}
const useStyles = makeStyles(theme => ({
@@ -33,7 +33,7 @@ const useStyles = makeStyles(theme => ({
}
}));
-const SignInForm: React.FC<PropTypes> = ({ logIn, setAuthorization }) => {
+const SignInForm: React.FC<PropTypes> = ({ logIn, setAuth }) => {
const [error, setError] = useState<boolean>(false);
const classes = useStyles();
const nameRef = useRef<HTMLInputElement>();
@@ -50,7 +50,7 @@ const SignInForm: React.FC<PropTypes> = ({ logIn, setAuthorization }) => {
};
const handleSignUp = () => {
- setAuthorization({ authorize: 'signUp' });
+ setAuth('signUp');
};
return (