diff --git a/ui/app/page.tsx b/ui/app/page.tsx
index cbd94135c..7c5165bc3 100644
--- a/ui/app/page.tsx
+++ b/ui/app/page.tsx
@@ -227,7 +227,7 @@ export default function Home() {
dayHeader = (
- {new Date(day).toLocaleDateString(language, { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })}
+ {new Date(event.start).toLocaleDateString(language, { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' })}
);
@@ -237,6 +237,7 @@ export default function Home() {
const getCompetitor = (competitorId: string) => {
+ console.log(competitorId);
if (competitorId.startsWith("team:")) {
const team = data.nocs.find(noc => noc.key === competitorId.replace("team:", ""));
return { noc: team!.key, name: translate(team!.name) };