8000 chore: redirect to the correct template page routes by aslilac · Pull Request #14230 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

chore: redirect to the correct template page routes #14230

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Aug 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
well ok then
  • Loading branch information
aslilac committed Aug 9, 2024
commit ff0101baf02c635d7504f1d8323ac4e43d7fdb99
2 changes: 1 addition & 1 deletion site/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
Outlet,
Route,
} from "react-router-dom";
import { TemplateRedirectController } from "pages/TemplatePage/TemplateRedirectController";
import { Loader } from "./components/Loader/Loader";
import { RequireAuth } from "./contexts/auth/RequireAuth";
import { DashboardLayout } from "./modules/dashboard/DashboardLayout";
Expand All @@ -23,7 +24,6 @@ import { UsersLayout } from "./pages/UsersPage/UsersLayout";
import UsersPage from "./pages/UsersPage/UsersPage";
import { WorkspaceSettingsLayout } from "./pages/WorkspaceSettingsPage/WorkspaceSettingsLayout";
import WorkspacesPage from "./pages/WorkspacesPage/WorkspacesPage";
import { TemplateRedirectController } from "pages/TemplatePage/TemplateRedirectController";

// Lazy load pages
// - Pages that are secondary, not in the main navigation or not usually accessed
Expand Down
Loading
0