This commit is contained in:
Mikola
2024-02-01 23:32:02 +03:00
parent cf1bbf136e
commit 903ae0062c
11 changed files with 41 additions and 42 deletions

View File

@ -35,7 +35,7 @@ export const Navigation = () => {
name: "Выплаты"
},
{
path: "/quiz",
path: "/Quiz",
name: "Тесты"
},
{
@ -96,7 +96,7 @@ export const Navigation = () => {
<NavLink
key={index}
end
to={link.path === "/quiz" ? link.path : `/profile${link.path}`}
to={link.path === "/Quiz" ? link.path : `/profile${link.path}`}
>
{link.name}
</NavLink>