diff --git a/dapp/src/pages/ActivityPage/index.tsx b/dapp/src/pages/ActivityPage/index.tsx index dc8695363..c1aef174f 100644 --- a/dapp/src/pages/ActivityPage/index.tsx +++ b/dapp/src/pages/ActivityPage/index.tsx @@ -18,7 +18,7 @@ export default function ActivityPage() { return ( - + diff --git a/dapp/src/router/index.tsx b/dapp/src/router/index.tsx index 0b3243eb7..233ae3f53 100644 --- a/dapp/src/router/index.tsx +++ b/dapp/src/router/index.tsx @@ -1,8 +1,8 @@ import React from "react" import { createBrowserRouter } from "react-router-dom" import LandingPage from "#/pages/LandingPage" -import OverviewPage from "#/pages/OverviewPage" import ActivityPage from "#/pages/ActivityPage" +import DashboardPage from "#/pages/DashboardPage" import { routerPath } from "./path" export const router = createBrowserRouter([ @@ -12,8 +12,8 @@ export const router = createBrowserRouter([ index: true, }, { - path: routerPath.overview, - element: , + path: routerPath.dashboard, + element: , }, { path: `${routerPath.activity}/:activityId`, diff --git a/dapp/src/router/path.ts b/dapp/src/router/path.ts index 478cd0efc..693a1aab7 100644 --- a/dapp/src/router/path.ts +++ b/dapp/src/router/path.ts @@ -1,5 +1,5 @@ export const routerPath = { home: "/", - overview: "/overview", + dashboard: "/dashboard", activity: "/activity-details", }