diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-14 20:06:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-14 20:06:33 +0100 |
| commit | a53080cda003e7821f6cf1f55b73600daf7519e8 (patch) | |
| tree | 91e7ec7c728e76fc75c67a404e42c8e8abf6683c /src/frontend/app/routes/stops-$id.tsx | |
| parent | e076ebb42f42947fa807fe7189a9cde61b510993 (diff) | |
Fix map markers
Diffstat (limited to 'src/frontend/app/routes/stops-$id.tsx')
| -rw-r--r-- | src/frontend/app/routes/stops-$id.tsx | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/src/frontend/app/routes/stops-$id.tsx b/src/frontend/app/routes/stops-$id.tsx index 92d76a3..30a8d1b 100644 --- a/src/frontend/app/routes/stops-$id.tsx +++ b/src/frontend/app/routes/stops-$id.tsx @@ -213,10 +213,7 @@ export default function Estimates() { } return ( - <PullToRefresh - onRefresh={handleManualRefresh} - isRefreshing={isManualRefreshing} - > + <> <div className="page-container estimates-page"> <div className="estimates-header"> <h1 className="page-title"> @@ -251,12 +248,6 @@ export default function Estimates() { </div> )} - <div className="experimental-notice"> - <strong> - {t("estimates.experimental_feature", "Experimental feature")} - </strong> - </div> - {(isManualRefreshing || dataLoading) && ( <div className="refresh-status"> <RefreshCw className="refresh-icon spinning" /> @@ -268,6 +259,12 @@ export default function Estimates() { <div className="estimates-content-wrapper"> <div className="estimates-list-container"> + <div className="experimental-notice"> + <strong> + {t("estimates.experimental_feature", "Experimental feature")} + </strong> + </div> + <div className="table-responsive"> {dataLoading ? ( <ConsolidatedCirculationListSkeleton /> @@ -304,6 +301,6 @@ export default function Estimates() { )} </div> </div> - </PullToRefresh> + </> ); } |
