From d63d9b7b4f2d22b9eeaa63b414fef3875ad4e979 Mon Sep 17 00:00:00 2001 From: Javier Ontiveros Date: Wed, 11 Mar 2026 09:29:45 -0600 Subject: [PATCH] chore: update base route path to match old paths (#797) --- site.config.dev.tsx | 1 - site.config.test.tsx | 1 - src/routes.jsx | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/site.config.dev.tsx b/site.config.dev.tsx index cf10014..490a772 100644 --- a/site.config.dev.tsx +++ b/site.config.dev.tsx @@ -13,7 +13,6 @@ const siteConfig: SiteConfig = { logoutUrl: 'http://local.openedx.io:8000/logout', environment: EnvironmentTypes.DEVELOPMENT, - basename: '/learner-dashboard', apps: [ shellApp, headerApp, diff --git a/site.config.test.tsx b/site.config.test.tsx index 0483daa..6f9da90 100644 --- a/site.config.test.tsx +++ b/site.config.test.tsx @@ -11,7 +11,6 @@ const siteConfig: SiteConfig = { logoutUrl: 'http://localhost:8000/logout', environment: EnvironmentTypes.TEST, - basename: '/learner-dashboard', apps: [{ appId, config: { diff --git a/src/routes.jsx b/src/routes.jsx index c43679b..38fd6c5 100644 --- a/src/routes.jsx +++ b/src/routes.jsx @@ -1,7 +1,7 @@ const routes = [ { id: 'org.openedx.frontend.route.learnerDashboard.main', - path: '/', + path: '/learner-dashboard', handle: { role: 'org.openedx.frontend.role.dashboard' },