Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/__tests__/pages/MenteeRegistrationPage.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ describe('MenteeRegistrationPage - registration closed', () => {
);
expect(screen.getByText('Application is now closed')).toBeInTheDocument();
expect(
screen.getByText(/Long-Term Mentorship programme/i),
screen.getByText(/Applications are currently closed/i),
).toBeInTheDocument();
expect(screen.queryByText('Step 1 of 3')).not.toBeInTheDocument();
});
Expand Down
2 changes: 1 addition & 1 deletion src/components/mentorship/RegistrationClosed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const RegistrationClosed = () => (
Application is now closed
</Typography>
<Typography variant="body1" color="text.secondary" sx={{ mb: 3 }}>
Applications for the Long-Term Mentorship programme are currently closed.
Applications are currently closed.
</Typography>
<Button variant="contained" component={NextLink} href="/mentorship">
Back to Mentorship
Expand Down
2 changes: 1 addition & 1 deletion src/utils/mentorshipConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export const PREFERENCE_LEVELS = ['Low', 'Medium', 'High', 'Not Applicable'];
* Mentee registration toggle.
* Set to `true` to open the registration form, `false` to show the closed page.
*/
export const IS_REGISTRATION_OPEN = true;
export const IS_REGISTRATION_OPEN = false;

/**
* Mentorship cycle type toggle.
Expand Down
Loading