feat: update station names

This commit is contained in:
2026-04-09 20:07:18 +03:00
parent 8d1de769c5
commit fbf8232ce3
9 changed files with 10 additions and 13 deletions

View File

@@ -147,7 +147,7 @@ export const StationListPage = observer(() => {
<div className="w-full">
<div className="flex justify-between items-center mb-10">
<h1 className="text-2xl">Станции</h1>
<h1 className="text-2xl">Остановки</h1>
{canWriteStations && (
<CreateButton label="Создать остановки" path="/station/create" />
)}
@@ -222,7 +222,7 @@ export const StationListPage = observer(() => {
slots={{
noRowsOverlay: () => (
<Box sx={{ mt: 5, textAlign: "center", color: "text.secondary" }}>
{isLoading ? <CircularProgress size={20} /> : "Нет станций"}
{isLoading ? <CircularProgress size={20} /> : "Нет остановок"}
</Box>
),
}}