diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2025-11-07 18:36:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-07 18:36:23 +0100 |
| commit | 6941f4fb37ffa57c2e4631ff6641976d21151e54 (patch) | |
| tree | 91b2960dfec6f0d8d80936ca28e83439d02ed6cf /src/frontend/app/routes/stops.tsx | |
| parent | ea15f86ff6765fa7e01e00e61d51540897de54f9 (diff) | |
Add redirect from /stops to root page (#80)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com>
Diffstat (limited to 'src/frontend/app/routes/stops.tsx')
| -rw-r--r-- | src/frontend/app/routes/stops.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/frontend/app/routes/stops.tsx b/src/frontend/app/routes/stops.tsx new file mode 100644 index 0000000..3161eb8 --- /dev/null +++ b/src/frontend/app/routes/stops.tsx @@ -0,0 +1,5 @@ +import { Navigate } from "react-router"; + +export default function StopsRedirect() { + return <Navigate to="/" replace />; +} |
