We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9b2f2 commit 95775bfCopy full SHA for 95775bf
apps/dashboard/components/analytics/map-component.tsx
@@ -104,7 +104,8 @@ export function MapComponent({
104
const metricToUse = mode === 'perCapita' ? 'perCapita' : 'count';
105
const values = processedCountryData?.map((d) => d[metricToUse]) || [0];
106
const maxValue = Math.max(...values);
107
- const minValue = Math.min(...values.filter((v: number) => v > 0));
+ const nonZeroValues = values.filter((v) => v > 0);
108
+ const minValue = nonZeroValues.length > 0 ? Math.min(...nonZeroValues) : 0;
109
110
const baseBlue = '59, 130, 246';
111
const lightBlue = '147, 197, 253';
0 commit comments