dots behind bracket

This commit is contained in:
yohlo
2025-08-23 14:06:22 -05:00
parent ee97606279
commit 12d1aca92c
2 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import { ActionIcon, Card, Container, Flex, Text } from '@mantine/core';
import { ActionIcon, Card, Flex, Text } from '@mantine/core';
import { PlayIcon } from '@phosphor-icons/react';
import React from 'react';
import { BracketMaps } from '../utils/bracket-maps';
@@ -37,7 +37,7 @@ const BracketView: React.FC<BracketViewProps> = ({ bracket, bracketMaps, onAnnou
return (
<Flex direction='row' gap={24} justify='left' pos='relative' p='xl'>
{bracket.map((round, roundIndex) => (
{bracket.map((round, roundIndex) => (
<Flex direction='column' key={roundIndex} gap={24} justify='space-around'>
{round.map((match, matchIndex) => {
if (!match) return null;