website refactor

This commit is contained in:
2026-01-21 18:40:49 +01:00
parent 69319ce1d4
commit ea58909070
18 changed files with 1051 additions and 267 deletions

View File

@@ -28,22 +28,10 @@ export default async function LeagueSchedulePage({ params }: Props) {
currentDriverId: undefined,
isAdmin: false,
}}
onRegister={async () => {}}
onWithdraw={async () => {}}
onEdit={() => {}}
onReschedule={() => {}}
onResultsClick={() => {}}
/>;
}
const viewData = result.unwrap();
return <LeagueScheduleTemplate
viewData={viewData}
onRegister={async () => {}}
onWithdraw={async () => {}}
onEdit={() => {}}
onReschedule={() => {}}
onResultsClick={() => {}}
/>;
return <LeagueScheduleTemplate viewData={viewData} />;
}