Skip to content

Commit

Permalink
EC-100181 redirecting empty basepath to login screen
Browse files Browse the repository at this point in the history
  • Loading branch information
marror7 committed Dec 1, 2020
1 parent 0e0f833 commit 94f42a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion screen/store/components/main.js
Expand Up @@ -17,7 +17,8 @@ var appObjects = {
{ path: "/orders", name: "orders", component: storeComps.CustomerOrdersPageTemplate },
{ path: "/account", name: "account", component: storeComps.AccountPageTemplate },
{ path: "/account/create", name: "createaccount", component: storeComps.CreateAccountPageTemplate },
{ path: "/resetPassword", name: "resetPassword", component: storeComps.ResetPasswordTemplate }
{ path: "/resetPassword", name: "resetPassword", component: storeComps.ResetPasswordTemplate },
{ path: "/", redirect: "/login" }
]
}),
App: {
Expand Down

0 comments on commit 94f42a4

Please sign in to comment.