Skip to content

Commit d889a64

Browse files
committed
chore: fix paths
1 parent 016f5c2 commit d889a64

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { CardListProps } from "../data/types";
66
export const CardsList = (props: CardListProps) => {
77

88
const onButtonClick = (index: number) => {
9-
window.location.href=`/product/${index + 1}`;
9+
window.location.href=`/kendo-react/kendo-react-e-commerce-astro-app/product/${index + 1}`;
1010
};
1111

1212
return (

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { Label } from '@progress/kendo-react-labels';
1919

2020
const Contacts: React.FC = () => {
2121
const onSubmitClick = () => {
22-
window.location.href = "/thankyou";
22+
window.location.href = "/kendo-react/kendo-react-e-commerce-astro-app/thankyou";
2323
};
2424

2525
return (

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const PaymentDetails: React.FC = () => {
3636
<RadioButton value="creditCard" label="Credit Card" />
3737
</div>
3838
<img
39-
src="/creditCards.png"
39+
src="/kendo-react/kendo-react-e-commerce-astro-app/creditCards.png"
4040
alt="Credit card options"
4141
className="k-mb-4"
4242
style={{ width: 'auto', height: 'auto', maxWidth: '100%' }}

examples/kendo-react-e-commerce-astro-app/src/data/items.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const items = [
22
{
33
"text": "Home",
4-
"page": "/"
4+
"page": "."
55
},
66
{
77
"text": "Jewelry",

0 commit comments

Comments
 (0)