Skip to content

Commit

Permalink
Fixed automatically ended interview shows Candidate Absent status
Browse files Browse the repository at this point in the history
  • Loading branch information
rasikaghadge authored May 29, 2024
1 parent 6bfea9c commit e0e27ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Interview/Interview.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ const Interview = () => {
};
};

const endInterviewHelper = () => {
changeInterviewStatus("Completed");
const endInterviewHelper = async () => {
await changeInterviewStatus("Completed");
endInterviewSession();
navigate("/scheduledinterviews");
}
Expand Down

0 comments on commit e0e27ce

Please sign in to comment.