From e58ce2fae9cfd07aa5aba7a16297c830a9b2092f Mon Sep 17 00:00:00 2001 From: Melvin Teo <62491197+meleongg@users.noreply.github.com> Date: Wed, 13 Dec 2023 12:31:49 -0800 Subject: [PATCH] Change minimum hackathon age option to 13 --- src/components/ApplicationForm/BasicInfo.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/ApplicationForm/BasicInfo.js b/src/components/ApplicationForm/BasicInfo.js index 9dfdce06..35ee7878 100644 --- a/src/components/ApplicationForm/BasicInfo.js +++ b/src/components/ApplicationForm/BasicInfo.js @@ -79,6 +79,9 @@ const graduationOptions = [ ] const ageOptions = [ + { value: 13, label: '13' }, + { value: 14, label: '14' }, + { value: 15, label: '15' }, { value: 16, label: '16' }, { value: 17, label: '17' }, { value: 18, label: '18' },