aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-03-21 00:36:25 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2026-03-21 00:36:25 +0100
commitf1b0b5f7ceaf6d23ae347e12cf29eef617c7dc9b (patch)
treed92c6075d019d87fd03482774050d7fc8981a5aa /src/frontend/app/components
parent2ef155c0c68208eccf968919fea12133698b50a9 (diff)
feat: enhance geocoding and stop search with performance metrics and improved response handling
Diffstat (limited to 'src/frontend/app/components')
-rw-r--r--src/frontend/app/components/PlaceListItem.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/frontend/app/components/PlaceListItem.tsx b/src/frontend/app/components/PlaceListItem.tsx
index 6c4f4a7..21250d6 100644
--- a/src/frontend/app/components/PlaceListItem.tsx
+++ b/src/frontend/app/components/PlaceListItem.tsx
@@ -1,8 +1,12 @@
-import { Building2, MapPin } from "lucide-react";
+import { Building2, BusFront, MapPin } from "lucide-react";
import type { PlannerSearchResult } from "~/data/PlannerApi";
function getIcon(layer?: string) {
switch ((layer || "").toLowerCase()) {
+ case "stop":
+ return (
+ <BusFront className="w-4 h-4 text-slate-600 dark:text-slate-400" />
+ );
case "venue":
return (
<Building2 className="w-4 h-4 text-slate-600 dark:text-slate-400" />