Skip to content

Commit

Permalink
fix: login admin
Browse files Browse the repository at this point in the history
  • Loading branch information
theqi106 committed Jan 7, 2025
1 parent ce92c81 commit 11ecc1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/containers/public/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ const Navigation: React.FC<NavigationProps> = ({ isAdmin = false }) => {
<div className="absolute top-full right-0 mt-2 bg-white shadow-md rounded-md p-4 w-[300px] flex flex-col z-50">
<Link
className="hover:text-orange-500 border-y border-gray-200 py-2 flex items-center gap-2 whitespace-nowrap text-slate-950"
to={'/user/login'}
to={path.LOGIN_USER}
>
<RiUserLine />
Đăng nhập cho người dùng
</Link>
<Link
className="hover:text-orange-500 border-y border-gray-200 py-2 flex items-center gap-2 whitespace-nowrap text-slate-950"
to={'/admin/login'}
to={'admin/login'}
>
<RiAdminLine />
Đăng nhập cho admin
Expand Down

0 comments on commit 11ecc1d

Please sign in to comment.