player stats in profile
This commit is contained in:
@@ -25,19 +25,19 @@ export const Bracket: React.FC<BracketProps> = ({
|
||||
justify="space-around"
|
||||
p={24}
|
||||
>
|
||||
{round
|
||||
.filter((match) => !match.bye)
|
||||
.map((match) => {
|
||||
return (
|
||||
<div key={match.lid}>
|
||||
<MatchCard
|
||||
match={match}
|
||||
orders={orders}
|
||||
showControls={showControls}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
{round.map((match) =>
|
||||
match.bye ? (
|
||||
<div key={match.lid}></div>
|
||||
) : (
|
||||
<div key={match.lid}>
|
||||
<MatchCard
|
||||
match={match}
|
||||
orders={orders}
|
||||
showControls={showControls}
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
)}
|
||||
</Flex>
|
||||
))}
|
||||
</Flex>
|
||||
|
||||
Reference in New Issue
Block a user