This commit is contained in:
Andras Schmelczer 2026-05-14 20:42:48 +01:00
parent 273d7a83ee
commit 084117cea8
48 changed files with 2283 additions and 890 deletions

View file

@ -46,6 +46,7 @@ interface AreaPaneProps {
onStatsUseFiltersChange: (useFilters: boolean) => void;
onNavigateToSource?: (slug: string, featureName: string) => void;
travelTimeEntries?: TravelTimeEntry[];
shareCode?: string;
isGroupExpanded: (name: string) => boolean;
onToggleGroup: (name: string) => void;
}
@ -74,6 +75,7 @@ export default function AreaPane({
onStatsUseFiltersChange,
onNavigateToSource,
travelTimeEntries,
shareCode,
isGroupExpanded,
onToggleGroup,
}: AreaPaneProps) {
@ -226,6 +228,7 @@ export default function AreaPane({
postcode={journeyPostcode}
entries={travelTimeEntries}
label={!isPostcode ? journeyPostcode : undefined}
shareCode={shareCode}
/>
) : null;
})()}