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

Commit 836eeae

Browse files
authored
Merge branch 'dev' into feature/interviewer-bugfix
2 parents 092bd77 + b6e939c commit 836eeae

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/routes/PositionDetails/components/InterviewConfirmPopup/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function InterviewConfirmPopup({ open, onClose }) {
2828
<p>
2929
You may manually select your available times from the email, or click
3030
<span styleName="highlighted"> “View More Times”</span> to see
31-
expanded options, Additionally, you may click
31+
expanded options, additionally, you may click
3232
<span styleName="highlighted"> “Overlay My Calendar”</span> to
3333
integrate with your calendar and allow the system to schedule based on
3434
your calendar availability.

src/routes/PositionDetails/components/InterviewDetailsPopup/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ function InterviewDetailsPopup({ open, onClose, candidate, openNext }) {
230230
<div styleName="bottom">
231231
<p styleName="modal-text">
232232
Selecting “Begin Scheduling” will initiate emails to all
233-
attendees to coordinate availabiltiy. Please check your email to
233+
attendees to coordinate availability. Please check your email to
234234
input your availability.
235235
</p>
236236
</div>

src/routes/PositionDetails/components/PositionCandidates/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const PositionCandidates = ({ position, statusFilterKey, updateCandidate }) => {
146146
status: CANDIDATE_STATUS.SELECTED,
147147
})
148148
.then(() => {
149-
toastr.success("Candidate is marked as interested.");
149+
toastr.success("Candidate is marked as selected.");
150150
setSelectCandidateOpen(false);
151151
})
152152
.catch((error) => {
@@ -170,7 +170,7 @@ const PositionCandidates = ({ position, statusFilterKey, updateCandidate }) => {
170170
: CANDIDATE_STATUS.CLIENT_REJECTED_SCREENING,
171171
})
172172
.then(() => {
173-
toastr.success("Candidate is marked as not interested.");
173+
toastr.success("Candidate is marked as declined.");
174174
setSelectCandidateOpen(false);
175175
})
176176
.catch((error) => {

src/routes/PositionDetails/components/PrevInterviewItem/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function PrevInterviewItem(props) {
1616
<Accordion
1717
title={`Interview Round ${round}`}
1818
subhead={formatInterviewDate(date)}
19-
sidebar={`${guestEmails.length + 1} Attendees`}
19+
sidebar={`${guestEmails.length + 1} Attendee(s)`}
2020
>
2121
<ul>
2222
<li styleName="email">{hostEmail}</li>

0 commit comments

Comments
 (0)