Skip to content

Commit

Permalink
Wrong value...
Browse files Browse the repository at this point in the history
  • Loading branch information
COMTOP1 committed Jan 29, 2024
1 parent 0a946fb commit 2df2b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Breadcrumbs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function YSTVBreadcrumbs() {
// Building the path backwards so the complete path will exist
let tempPath: string = "";
for (let j = i; j >= 0; j--) {
tempPath = `/${part}` + tempPath;
tempPath = `/${parts1[j]}` + tempPath;
}
segments.push({ name: breadcrumbSegments[part], path: tempPath });
}
Expand Down

0 comments on commit 2df2b46

Please sign in to comment.