Skip to content

Commit 1f4b178

Browse files
committed
chore: fix navigation path
1 parent 5aa029b commit 1f4b178

File tree

1 file changed

+2
-2
lines changed
  • examples/kendo-react-e-commerce-astro-app/src/components

1 file changed

+2
-2
lines changed

examples/kendo-react-e-commerce-astro-app/src/components/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const Header: React.FC = () => {
2929
const selectedItem: CustomMenuItemModel = event.item;
3030

3131
if (selectedItem.page) {
32-
window.location.href = selectedItem.page;
33-
return;
32+
window.location.href = '/kendo-react/kendo-react-e-commerce-astro-app/' + selectedItem.page;
33+
return;
3434
}
3535

3636
const selectedCategory = selectedItem.text;

0 commit comments

Comments
 (0)