Skip to content

Commit

Permalink
profile error
Browse files Browse the repository at this point in the history
  • Loading branch information
thakiyudheen committed Jul 15, 2024
1 parent b88974c commit 2b15714
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/user/profile/UserDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const UserDetails: React.FC = () => {
setProfileImage(data?.data?.profile?.avatar)
}
getData()
},[data])
},[dispatch])


const validationSchema = Yup.object().shape({
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/student/studentDashbord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const StudentDashboard: React.FC = () => {
<nav className={`w-full ${theme == 'light' ? 'bg-white ' : 'bg-gray-800'} h-[69px] shadow-md flex justify-end items-center fixed top-0 left-0 z-40`}>
<div className='flex justify-evenly mr-[3rem] items-center'>
{/* <CgProfile className='text-[1.3rem] mr-5' /> */}
<TiHome className='mr-5 text-[6vh] dark:text-gray-500 text-gray-600' onClick={()=>navigate('/home')}/>
<TiHome className='mr-5 text-[3vh] dark:text-gray-500 text-gray-600' onClick={()=>navigate('/home')}/>
<ModeToggle />
</div>
</nav>
Expand Down

0 comments on commit 2b15714

Please sign in to comment.