mirror of
https://github.com/christianvidalwolf-prog/CrazeAnalytix.git
synced 2026-08-03 16:55:24 +02:00
Fix syntax in ForecastViewProps to match App.tsx usage
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user