diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-10-22 00:06:52 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-10-22 00:07:11 +0200 |
| commit | 5d6fd75899e96826f8e8aa0c84f7f186cbc7e471 (patch) | |
| tree | 811cf377bdbe85a3343aed673a6541efee64e982 /src/frontend/app/routes/stoplist.tsx | |
| parent | 770f764d55045dae34737a5d6111cc7362330e9a (diff) | |
Confirm region change, make app name more consistent
Diffstat (limited to 'src/frontend/app/routes/stoplist.tsx')
| -rw-r--r-- | src/frontend/app/routes/stoplist.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/frontend/app/routes/stoplist.tsx b/src/frontend/app/routes/stoplist.tsx index 13d3584..71b7d3c 100644 --- a/src/frontend/app/routes/stoplist.tsx +++ b/src/frontend/app/routes/stoplist.tsx @@ -6,6 +6,7 @@ import Fuse from "fuse.js"; import "./stoplist.css"; import { useTranslation } from "react-i18next"; import { useApp } from "../AppContext"; +import { REGIONS } from "~/data/RegionConfig"; export default function StopList() { const { t } = useTranslation(); @@ -100,7 +101,7 @@ export default function StopList() { return ( <div className="page-container stoplist-page"> - <h1 className="page-title">UrbanoVigo Web</h1> + <h1 className="page-title">BusUrbano - {REGIONS[region].name}</h1> <form className="search-form"> <div className="form-group"> |
