router config changes

This commit is contained in:
yohlo
2025-08-26 22:47:25 -05:00
parent fcdb33a4b6
commit 75479be334
16 changed files with 87 additions and 101 deletions

View File

@@ -13,15 +13,12 @@ export const Route = createFileRoute("/_authed/admin/tournaments/")({
withBackButton: true,
title: "Manage Tournaments",
},
refresh: {
toRefresh: tournamentQueries.list().queryKey,
},
refresh: tournamentQueries.list().queryKey,
withPadding: false
}),
component: RouteComponent,
});
function RouteComponent() {
return <Page noPadding>
<ManageTournaments />
</Page>
return <ManageTournaments />
}