Skip to content

Commit

Permalink
Fix/update grad years (#1015)
Browse files Browse the repository at this point in the history
* Add 3rd checkbox to Terms and Conditions #1010

* Update Grad Years in Filter

* MLH Form Changes (#1016)

* Updated level of study options to match MLH requirements

* #1000 - Update export from .tsv to .csv

* Changed hacker account form 'birthdate' field to 'age' #1003

* Added country of residence field to Other/Personal Details section of hacker application #1009

* Added country of residence field to the hacker application.

* add back CEGEP level of study.

---------

Co-authored-by: allennatang <[email protected]>

* Clear the fields and add success message after sending account invite (#1008)

* change-mchacks12

* change-mchacks12

* Remove Netlify link from README

* Removed Facebook eventPrompt; Fixed typo in application submission; Added phone number field to account creation. (#1005)

Co-authored-by: Joshua Zhou <[email protected]>

* Fix/fixed phone number input (#1006)

* Removed Facebook eventPrompt; Fixed typo in application submission; Added phone number field to account creation.

* Initialize phone number as inputted value in sign up form so it doesn't default to 11111111111

---------

Co-authored-by: Joshua Zhou <[email protected]>

* add success message and reset fields after an invite is successfully sent

* MLH Form Changes (#1016)

* Updated level of study options to match MLH requirements

* #1000 - Update export from .tsv to .csv

* Changed hacker account form 'birthdate' field to 'age' #1003

* Added country of residence field to Other/Personal Details section of hacker application #1009

* Added country of residence field to the hacker application.

* add back CEGEP level of study.

---------

Co-authored-by: allennatang <[email protected]>

* Add 3rd checkbox to Terms and Conditions (#1012)

* Add 3rd checkbox to Terms and Conditions #1010

* MLH Form Changes (#1016)

* Updated level of study options to match MLH requirements

* #1000 - Update export from .tsv to .csv

* Changed hacker account form 'birthdate' field to 'age' #1003

* Added country of residence field to Other/Personal Details section of hacker application #1009

* Added country of residence field to the hacker application.

* add back CEGEP level of study.

---------

Co-authored-by: allennatang <[email protected]>

* Added Jamie's changes for MLH checkbox, fixed merge conflicts.

* fixed dumb rebase error

---------

Co-authored-by: Tavi Pollard <[email protected]>
Co-authored-by: allennatang <[email protected]>
Co-authored-by: Tavi Pollard <[email protected]>

* change-mchacks12

---------

Co-authored-by: Mika Vohl <[email protected]>
Co-authored-by: Joshua Zhou <[email protected]>
Co-authored-by: Joshua Zhou <[email protected]>
Co-authored-by: Tavi Pollard <[email protected]>
Co-authored-by: allennatang <[email protected]>
Co-authored-by: Tavi Pollard <[email protected]>

---------

Co-authored-by: Tavi Pollard <[email protected]>
Co-authored-by: allennatang <[email protected]>
Co-authored-by: Mika Vohl <[email protected]>
Co-authored-by: Joshua Zhou <[email protected]>
Co-authored-by: Joshua Zhou <[email protected]>
Co-authored-by: Tavi Pollard <[email protected]>
  • Loading branch information
7 people authored Nov 15, 2024
1 parent c902184 commit 6c8c332
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/config/gradYears.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
const GradYearList = [2020, 2021, 2022, 2023, 2024, 2025, 2026];
// const GradYearList = [2020, 2021, 2022, 2023, 2024, 2025, 2026];
const presentDate = new Date();
const presentYear = presentDate.getFullYear();
const GradYearList = [presentYear, presentYear+1, presentYear+2, presentYear+3, presentYear+4, presentYear+5, presentYear+6, presentYear+7, presentYear+8, presentYear+9, presentYear+10];
export const GradYears = GradYearList.map((v) => ({ label: v, value: v }));

0 comments on commit 6c8c332

Please sign in to comment.