Skip to content

Commit

Permalink
Merge pull request #51 from ekaterinailiushenko/hotfix/fix-routing-paths
Browse files Browse the repository at this point in the history
Hotfix/fix routing paths
  • Loading branch information
ekaterinailiushenko authored Feb 12, 2025
2 parents fc0b54b + 0b1968a commit 6ad7562
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ecommerce-example-webshop",
"private": true,
"version": "1.2.1",
"version": "1.3.0",
"homepage": "https://ekaterinailiushenko.github.io/ecommerce-example-webshop",
"scripts": {
"dev": "vite",
Expand Down
10 changes: 5 additions & 5 deletions src/router/config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export enum Routes {
HOME_PAGE_URL = '/ecommerce-example-webshop/',
CART_PAGE_URL = 'cart',
LOGIN_PAGE_URL = 'login',
SIGNUP_PAGE_URL = 'signup',
PROFILE_PAGE_URL = 'profile',
SETTINGS_PAGE_URL = 'settings',
CART_PAGE_URL = '/ecommerce-example-webshop/cart',
LOGIN_PAGE_URL = '/ecommerce-example-webshop/login',
SIGNUP_PAGE_URL = '/ecommerce-example-webshop/signup',
PROFILE_PAGE_URL = '/ecommerce-example-webshop/profile',
SETTINGS_PAGE_URL = '/ecommerce-example-webshop/profile/settings',
}

0 comments on commit 6ad7562

Please sign in to comment.