diff --git a/src/components/ApplicationForm/BasicInfo.js b/src/components/ApplicationForm/BasicInfo.js
index 29876d7c..0c666803 100644
--- a/src/components/ApplicationForm/BasicInfo.js
+++ b/src/components/ApplicationForm/BasicInfo.js
@@ -60,7 +60,7 @@ const educationOptions = [
// { value: 'preferNotToAnswer', label: 'Prefer not to answer' },
// ]
-const academicYear = [
+const academicYearOptions = [
{ value: 'Secondary/High School', label: 'Secondary/High School' },
{ value: '1st year', label: '1st year' },
{ value: '2nd year', label: '2nd year' },
@@ -615,10 +615,10 @@ export default ({ refs, errors, formInputs, onChange }) => (
{errors?.academicYear && {errors?.academicYear}}
onChange({
academicYear: inputValue.value,
diff --git a/src/utility/Constants.js b/src/utility/Constants.js
index 38b5d871..6f66ee92 100644
--- a/src/utility/Constants.js
+++ b/src/utility/Constants.js
@@ -236,6 +236,7 @@ export const HACKER_APPLICATION_TEMPLATE = Object.freeze({
major: '',
educationLevel: '',
graduation: null,
+ academicYear: '',
countryOfResidence: '',
willBeAgeOfMajority: null,
},