diff --git a/client/src/components/Planner/PlaceInspector.tsx b/client/src/components/Planner/PlaceInspector.tsx
index 8f1e8e43..58ffbf99 100644
--- a/client/src/components/Planner/PlaceInspector.tsx
+++ b/client/src/components/Planner/PlaceInspector.tsx
@@ -341,9 +341,16 @@ export default function PlaceInspector({
)}
{/* Description / Summary */}
- {(place.description || place.notes || googleDetails?.summary) && (
+ {(place.description || googleDetails?.summary) && (
- {place.description || place.notes || googleDetails?.summary || ''}
+ {place.description || googleDetails?.summary || ''}
+
+ )}
+
+ {/* Notes */}
+ {place.notes && (
+
+ {place.notes}
)}
diff --git a/client/src/types.ts b/client/src/types.ts
index bcaa82e6..2cf23741 100644
--- a/client/src/types.ts
+++ b/client/src/types.ts
@@ -43,18 +43,24 @@ export interface Place {
trip_id: number
name: string
description: string | null
+ notes: string | null
lat: number | null
lng: number | null
address: string | null
category_id: number | null
icon: string | null
price: string | null
+ currency: string | null
image_url: string | null
google_place_id: string | null
osm_id: string | null
route_geometry: string | null
place_time: string | null
end_time: string | null
+ duration_minutes: number | null
+ transport_mode: string | null
+ website: string | null
+ phone: string | null
created_at: string
}