Skip to content

Commit

Permalink
Merge pull request #121 from esamarathon/fix-volunteering-link
Browse files Browse the repository at this point in the history
Update home.js
  • Loading branch information
CBenni authored Dec 1, 2021
2 parents 8cb025d + 57595ae commit 4cff012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/api/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function calculateEventFeed(event) {
ret.push({ event: event._id, text: `Submissions are now closed for ${event.name}`, time: event.submissionsEnd });
}
if (event.applicationsStart && event.applicationsStart < now) {
ret.push({ event: event._id, text: `Volunteer applications have been opened for ${event.name}. \nGo apply [{"name": "Volunteers"}](here)`, time: event.applicationsStart });
ret.push({ event: event._id, text: `Volunteer applications have been opened for ${event.name}. \nGo apply [{"name": "Applications"}](here)`, time: event.applicationsStart });
}
if (event.applicationsEnd && event.applicationsEnd < now) {
ret.push({ event: event._id, text: `Volunteer applications are now closed for ${event.name}`, time: event.applicationsEnd });
Expand Down

0 comments on commit 4cff012

Please sign in to comment.