fix tournament card size
This commit is contained in:
@@ -7,17 +7,7 @@ interface PodiumProps {
|
||||
}
|
||||
|
||||
export const Podium = ({ tournament }: PodiumProps) => {
|
||||
if (!tournament.first_place) {
|
||||
return (
|
||||
<Box p="md">
|
||||
<Center>
|
||||
<Text c="dimmed" size="sm">
|
||||
Podium will appear here when the tournament is over
|
||||
</Text>
|
||||
</Center>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
if (!tournament.first_place) return;
|
||||
|
||||
return (
|
||||
<Stack gap="xs" px="md">
|
||||
|
||||
Reference in New Issue
Block a user