Skip to content

Commit

Permalink
remove option to request bursary in registration
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleyleal committed Aug 22, 2024
1 parent 07d26ca commit 2f66155
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
12 changes: 6 additions & 6 deletions client/src/pages/FAQ/functions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ export async function getQuestions(setSnackbar) {
lastUpdated: '2:00 pm',
category: 'General',
},
{
question: "What if I can't afford the ticket for F!rosh Week?",
answer: 'That’s okay! You can apply for a bursary when you sign up for F!rosh Week!',
lastUpdated: '12:17pm, Jun 22, 2024',
category: 'General',
},
// {
// question: "What if I can't afford the ticket for F!rosh Week?",
// answer: 'That’s okay! You can apply for a bursary when you sign up for F!rosh Week!',
// lastUpdated: '12:17pm, Jun 22, 2024',
// category: 'General',
// },
{
question: 'What should I bring on the first day?',
answer:
Expand Down
18 changes: 9 additions & 9 deletions client/src/pages/Registration/RegistrationFields.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -480,15 +480,15 @@ export const fields = {
label: 'The price of one Frosh Week ticket is 130 CAD.',
isBold: true,
},
bursaryRequested: {
type: 'radio',
label: 'Do you require any bursary or financial aid for your Frosh Week ticket?',
values: ['Yes', 'No'],
initialSelectedIndex: 0,
isRequiredInput: false,
noEdit: false,
localStorageKey: 'registration-bursary',
},
// bursaryRequested: {
// type: 'radio',
// label: 'Do you require any bursary or financial aid for your Frosh Week ticket?',
// values: ['Yes', 'No'],
// initialSelectedIndex: 0,
// isRequiredInput: false,
// noEdit: false,
// localStorageKey: 'registration-bursary',
// },
marketing: {
type: 'checkbox',
label: 'How did you hear about F!rosh Week?',
Expand Down
5 changes: 3 additions & 2 deletions client/src/pages/Registration/RegistrationForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const PageRegistrationForm = ({ editFieldsPage, initialValues, onEditSubmit }) =
// } else if (convertedFroshObject.summerLocationQuery === 'No') {
// convertedFroshObject.summerLocationQuery = false;
// }

let formData = new FormData();
for (const [key, value] of Object.entries(froshObject)) {
if (value === undefined) continue;
Expand Down Expand Up @@ -462,7 +462,8 @@ const PageRegistrationForm = ({ editFieldsPage, initialValues, onEditSubmit }) =
Note: We will be making bursary decisions after Frosh week and will refund
the amount to the students after the decisions. Our team will reach out to
you for more details regarding the bursary program. Bursaries range from
partial to complete settlement of the ticket price.
partial to complete settlement of the ticket price. Bursary applications are
now closed.
</p>
</div>
),
Expand Down

0 comments on commit 2f66155

Please sign in to comment.