fix: bar height

This commit is contained in:
julius 2025-03-24 14:19:05 +01:00
parent 195d240a87
commit fc8592f8ab
Signed by: julius
GPG Key ID: C80A63E6A5FD7092

View File

@ -16,7 +16,7 @@ const determineNiceWidth = (width: number) => {
const RaceChart: FC<RaceChartProps> = ({ players, std }) => {
const [width, setWidth] = useState(determineNiceWidth(window.innerWidth));
//const [height, setHeight] = useState(window.innerHeight);
const height = Math.max(3, players.length) * 40;
const height = (players.length + 1) * 40;
useEffect(() => {
const handleResize = () => {