diff --git a/src/components/Dashboard.tsx b/src/components/Dashboard.tsx index 2d98a57..fe00381 100644 --- a/src/components/Dashboard.tsx +++ b/src/components/Dashboard.tsx @@ -84,7 +84,7 @@ function Dashboard({ data, seasons, userRole, showDataLabels, setShowDataLabels, const [channelChartType, setChannelChartType] = useState<'bar' | 'pie'>('pie'); const [channelDisplayMode, setChannelDisplayMode] = useState<'absolute' | 'percent'>('absolute'); const [eventDisplayMode, setEventDisplayMode] = useState<'absolute' | 'percent'>('absolute'); - const [districtChartType, setDistrictChartType] = useState<'bar' | 'pie'>('bar'); + const [districtChartType, setDistrictChartType] = useState<'bar' | 'pie'>('pie'); const [districtDisplayMode, setDistrictDisplayMode] = useState<'absolute' | 'percent'>('absolute'); const filteredData = useMemo(() => filterData(data, filters), [data, filters]);