bug fixes

This commit is contained in:
yohlo
2025-09-25 15:49:09 -05:00
parent 81329e4354
commit c0ef535001
15 changed files with 42 additions and 24 deletions

View File

@@ -9,7 +9,7 @@ import ListButton from "@/components/list-button";
const AdminPage = () => {
return (
<List>
<List p="0">
<ListLink
label="Manage Tournaments"
Icon={TrophyIcon}

View File

@@ -5,7 +5,7 @@ import ListLink from "@/components/list-link";
const ManageTournaments = () => {
const { data: tournaments } = useTournaments();
return (
<List>
<List p="0">
{tournaments.map((t) => (
<ListLink label={t.name} to={`/admin/tournaments/${t.id}`} />
))}