From 269ab46151edc821d50f866c1ee04d5d394257ff Mon Sep 17 00:00:00 2001 From: Kezia Date: Mon, 12 Jan 2026 11:09:26 -0800 Subject: [PATCH] fix: include age field --- src/services/query.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/services/query.ts b/src/services/query.ts index b087bf7..b63a84d 100644 --- a/src/services/query.ts +++ b/src/services/query.ts @@ -47,6 +47,7 @@ export const flattenApplicantData = ( const flattened: FlattenedApplicant = { // Basic Info + ageByHackathon: applicant.basicInfo?.ageByHackathon || "", firstName: applicant.basicInfo?.legalFirstName || applicant.basicInfo?.firstName || "", lastName: applicant.basicInfo?.legalLastName || applicant.basicInfo?.lastName || "", email: applicant.basicInfo?.email || "", @@ -266,6 +267,7 @@ export interface FlattenedApplicant { educationLevel: string; graduation: string | number; gender: string; + ageByHackathon: string; isOfLegalAge: boolean; travellingToHackathon: string; culturalBackground: string;