diff options
| author | soryu <soryu@soryu.co> | 2026-01-16 12:23:49 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-16 12:23:49 +0000 |
| commit | 205ab8a223ddf6591a3e8bfc9108506502977c11 (patch) | |
| tree | d768063acff233dbeea223d7b6ea69d7e3038300 /makima/frontend/src/main.tsx | |
| parent | 05931d19bc0c161d0177c3f983d0cd903d5e8ae3 (diff) | |
| download | soryu-205ab8a223ddf6591a3e8bfc9108506502977c11.tar.gz soryu-205ab8a223ddf6591a3e8bfc9108506502977c11.zip | |
Fixup: use default api.makima.jp URL and fix default branch detection
Also add checkpointing/history
Diffstat (limited to 'makima/frontend/src/main.tsx')
| -rw-r--r-- | makima/frontend/src/main.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/makima/frontend/src/main.tsx b/makima/frontend/src/main.tsx index 5d389fc..5fd6a4e 100644 --- a/makima/frontend/src/main.tsx +++ b/makima/frontend/src/main.tsx @@ -13,6 +13,7 @@ import FilesPage from "./routes/files"; import ContractsPage from "./routes/contracts"; import WorkflowPage from "./routes/workflow"; import MeshPage from "./routes/mesh"; +import HistoryPage from "./routes/history"; import LoginPage from "./routes/login"; import SettingsPage from "./routes/settings"; @@ -91,6 +92,22 @@ createRoot(document.getElementById("root")!).render( } /> <Route + path="/history" + element={ + <ProtectedRoute> + <HistoryPage /> + </ProtectedRoute> + } + /> + <Route + path="/history/:id" + element={ + <ProtectedRoute> + <HistoryPage /> + </ProtectedRoute> + } + /> + <Route path="/settings" element={ <ProtectedRoute> |
