Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Fixing a few content bugs #254

Merged
merged 5 commits into from
May 13, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function InterviewConfirmPopup({ open, onClose }) {
<p>
You may manually select your available times from the email, or click
<span styleName="highlighted"> “View More Times”</span> to see
expanded options, Additionally, you may click
expanded options, additionally, you may click
<span styleName="highlighted"> “Overlay My Calendar”</span> to
integrate with your calendar and allow the system to schedule based on
your calendar availability.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function InterviewDetailsPopup({ open, onClose, candidate, openNext }) {
<div styleName="bottom">
<p styleName="modal-text">
Selecting “Begin Scheduling” will initiate emails to all
attendees to coordinate availabiltiy. Please check your email to
attendees to coordinate availability. Please check your email to
input your availability.
</p>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const PositionCandidates = ({ position, statusFilterKey, updateCandidate }) => {
status: CANDIDATE_STATUS.SELECTED,
})
.then(() => {
toastr.success("Candidate is marked as interested.");
toastr.success("Candidate is marked as selected.");
setSelectCandidateOpen(false);
})
.catch((error) => {
Expand All @@ -170,7 +170,7 @@ const PositionCandidates = ({ position, statusFilterKey, updateCandidate }) => {
: CANDIDATE_STATUS.CLIENT_REJECTED_SCREENING,
})
.then(() => {
toastr.success("Candidate is marked as not interested.");
toastr.success("Candidate is marked as declined.");
setSelectCandidateOpen(false);
})
.catch((error) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function PrevInterviewItem(props) {
<Accordion
title={`Interview Round ${round}`}
subhead={formatDate(date)}
sidebar={`${guestEmails.length + 1} Attendees`}
sidebar={`${guestEmails.length + 1} Attendee(s)`}
>
<ul>
<li styleName="email">{hostEmail}</li>
Expand Down