Fix syntax in ForecastViewProps to match App.tsx usage

This commit is contained in:
Christian Vidal Wolf
2026-01-28 11:26:12 +01:00
parent c42f265132
commit c9494eb6d1
+3 -1
View File
@@ -15,10 +15,12 @@ import {
interface ForecastViewProps {
data: ProductForecastData[];
filters: FilterState;
onFilterChange: (newFilters: FilterState) => void;
top50Ranking: { eu: Map<string, number>; uk: Map<string, number> };
stockMap: Map<string, number>;
top50Mode: 'eu' | 'uk';
vendorStockMap?: Map<string, { eu: number; uk: number }>;
stockFilter: string[];
onStockFilterChange: (newFilters: string[]) => void;
vendorStockFilter: string[];
onVendorStockFilterChange: (newFilters: string[]) => void;
}