Skip to content

Commit f381d25

Browse files
Fix static
1 parent 4d49a8d commit f381d25

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/data/charts/scatter/ScatterBatchRenderer.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ const scatterChartsParams = {
2424
([countryCode, electricity]) => ({
2525
data: electricity.map((value, index) => ({
2626
x: value / 1000,
27-
y:
28-
carbonEmissions2024Every6Hours[
29-
countryCode as keyof typeof electricityGeneration2024Every6Hours
30-
][index],
27+
y: carbonEmissions2024Every6Hours[
28+
countryCode as keyof typeof electricityGeneration2024Every6Hours
29+
][index],
3130
})),
3231
markerSize: 1,
3332
label:

0 commit comments

Comments
 (0)