diff --git a/ui/src/App.tsx b/ui/src/App.tsx index 0fb1917c..b1b6ca8a 100644 --- a/ui/src/App.tsx +++ b/ui/src/App.tsx @@ -10,7 +10,7 @@ import { import { createTheme, ThemeProvider } from "@mui/material/styles"; import Home from "./pages/index"; -import Repos from "./pages/repos"; +import Dashboard from "./pages/dashboard"; import Repo from "./pages/repo"; import Test from "./pages/test"; import Login from "./pages/login"; @@ -61,10 +61,10 @@ const router = createBrowserRouter([ ), }, { - path: "repos", + path: "dashboard", element: ( - + ), }, @@ -113,7 +113,7 @@ const router = createBrowserRouter([ element: ( {/* */} - + ), }, diff --git a/ui/src/pages/repos.tsx b/ui/src/pages/dashboard.tsx similarity index 99% rename from ui/src/pages/repos.tsx rename to ui/src/pages/dashboard.tsx index 0eede0e6..a6bd9347 100644 --- a/ui/src/pages/repos.tsx +++ b/ui/src/pages/dashboard.tsx @@ -419,7 +419,7 @@ const RepoLists = () => { ); }; -export default function Page() { +export default function Dashboard() { const { me } = useMe(); const { hasToken, loginGuest, isSignedIn } = useAuth();