From c9494eb6d10c8df4e53b6c60390d27b3947ab559 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Wed, 28 Jan 2026 11:26:12 +0100 Subject: [PATCH] Fix syntax in ForecastViewProps to match App.tsx usage --- components/ForecastView.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; }