Optimizations and underlying fixes done yesterday #282

Merged
ameye merged 22 commits from suggested-task-page into master 2023-07-10 08:46:47 +00:00
Showing only changes of commit a5af8ed722 - Show all commits
@@ -3,6 +3,7 @@ import { useLocation, useNavigate } from 'react-router-dom';
import usersService from '../../../services/UsersService';
import {updateUserDetails} from "../../../store/UserDetails";
import { useDispatch } from "react-redux";
import AuthLayout from "../AuthLayout";
function Redirect() {
const location = useLocation();
@@ -56,7 +57,9 @@ function Redirect() {
});
},[])
return (
<div>Redirecting ... </div>
<AuthLayout>
<div className='min-h-[70vh]'>Redirecting ... </div>
</AuthLayout>
)
}