diff --git a/src/pages/CheckIn.jsx b/src/pages/CheckIn.jsx index e1d7c89..ef1a2f7 100644 --- a/src/pages/CheckIn.jsx +++ b/src/pages/CheckIn.jsx @@ -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 {