Skip to content
Snippets Groups Projects

Polished auth flow including ReservedRoute and role selection.

Merged Defendi Alberto requested to merge feature/privateroute/role into dev
2 files
+ 3
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -28,7 +28,7 @@ export const SignInForm: FC = () => {
@@ -28,7 +28,7 @@ export const SignInForm: FC = () => {
return () => {
return () => {
isMounted = false;
isMounted = false;
};
};
}, [cookie]);
}, []);
const { control, errors, setError, handleSubmit } = useForm<CredentialsType>({
const { control, errors, setError, handleSubmit } = useForm<CredentialsType>({
defaultValues,
defaultValues,
@@ -52,6 +52,7 @@ export const SignInForm: FC = () => {
@@ -52,6 +52,7 @@ export const SignInForm: FC = () => {
},
},
)
)
.then((response) => {
.then((response) => {
 
console.log(response);
if (response.data.status === 'fail') {
if (response.data.status === 'fail') {
setError('username', {
setError('username', {
type: 'server',
type: 'server',
Loading