diff --git a/components/ForecastView.tsx b/components/ForecastView.tsx index d99b248..974c0a2 100644 --- a/components/ForecastView.tsx +++ b/components/ForecastView.tsx @@ -15,10 +15,12 @@ import { interface ForecastViewProps { data: ProductForecastData[]; filters: FilterState; - onFilterChange: (newFilters: FilterState) => void; + top50Ranking: { eu: Map; uk: Map }; stockMap: Map; top50Mode: 'eu' | 'uk'; vendorStockMap?: Map; + stockFilter: string[]; + onStockFilterChange: (newFilters: string[]) => void; vendorStockFilter: string[]; onVendorStockFilterChange: (newFilters: string[]) => void; }