diff --git a/src/components/supply/PropertyFilterBar.tsx b/src/components/supply/PropertyFilterBar.tsx index ffcae6a..72e892e 100644 --- a/src/components/supply/PropertyFilterBar.tsx +++ b/src/components/supply/PropertyFilterBar.tsx @@ -33,7 +33,14 @@ const SORT_OPTIONS = [ ] as const const ALL_ASSET_TYPES = Object.values(AssetType) -const ALL_AVAILABILITY = Object.values(AvailabilityStatus) + +// Supply-side only: FUTURE_SIGNAL is a demand/AI concept (market intelligence for unknown properties) +// A property manager's own inventory can only be in one of these three states +const SUPPLY_AVAILABILITY_STATUSES = [ + AvailabilityStatus.AVAILABLE_NOW, + AvailabilityStatus.AVAILABLE_SOON, + AvailabilityStatus.OCCUPIED, +] as const export function PropertyFilterBar({ filters, onFiltersChange }: PropertyFilterBarProps) { const isActive = @@ -95,7 +102,7 @@ export function PropertyFilterBar({ filters, onFiltersChange }: PropertyFilterBa sx={{ minWidth: 160 }} > Verfügbarkeit (alle) - {ALL_AVAILABILITY.map(s => ( + {SUPPLY_AVAILABILITY_STATUSES.map(s => ( {getAvailabilityLabel(s)} ))}