Skip to content

Commit

Permalink
fixe: fixes the link path in the algorithms page
Browse files Browse the repository at this point in the history
  • Loading branch information
nubiemir committed Sep 6, 2024
1 parent 357edba commit c128db6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/algorithm/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ const Menu = () => {
image: LinkImage,
title: "Linear Search",
subtitle: "This is a linear search",
visualizeLink: `http://localhost:5173${pathname}/searching/linear`,
visualizeLink: `/searching/linear`,
},
{
image: LinkImage,
title: "Bineary Search",
subtitle: "This is a bineary search",
visualizeLink: `http://localhost:5173${pathname}/searching/bineary`,
visualizeLink: `/searching/bineary`,
},
],
};
Expand Down

0 comments on commit c128db6

Please sign in to comment.