Update Histogram.tsx

oops missing parenthesis.
This commit is contained in:
Jacob Louis Hoover 2022-01-25 13:03:27 -05:00 committed by GitHub
parent 3f6d65fc68
commit b5bfad1104
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ export const Histogram = ({ gameStats }: Props) => {
<Progress
key={i}
index={i}
size={95 * (value / Math.max(...winDistribution)}
size={95 * (value / Math.max(...winDistribution))}
label={String(value)}
/>
))}