Skip to content

Commit

Permalink
Merge pull request #82 from Bostonhacks/small-fix-for-check-in
Browse files Browse the repository at this point in the history
Small fix for check in
  • Loading branch information
danielyu12 authored Nov 13, 2023
2 parents d356c72 + d18fc35 commit fd3b95f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/CheckIn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const CheckIn = () => {
const applicationDoc = querySnapshot.docs[0];
const status = applicationDoc.data().status;

if (status === "Confirmed") {
if (status === "Confirmed" || status == "Checked In") {
// If the status is "confirmed," update it to "Checked In"
await updateApplicationStatus(applicationDoc.id, "Checked In");
} else {
Expand Down

0 comments on commit fd3b95f

Please sign in to comment.