Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBenediktBusch committed May 22, 2024
1 parent 906b5dd commit 4163f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/berlin/src/pages/Results.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function Results() {
.map(([id, stats]) => ({
id,
...stats,
allocatedFunding: funding?.allocated_funding[id] !== undefined ? funding.allocated_funding[id] : null,
allocatedFunding: funding?.allocated_funding[id] || null,
}))
.sort((a, b) => parseFloat(b.pluralityScore) - parseFloat(a.pluralityScore));

Expand Down

0 comments on commit 4163f41

Please sign in to comment.