diff --git a/components/EngagementForm.tsx b/components/EngagementForm.tsx index 92515e3..b19e111 100644 --- a/components/EngagementForm.tsx +++ b/components/EngagementForm.tsx @@ -300,6 +300,12 @@ export function EngagementForm({ config, cid, cs }: EngagementFormProps) { }); return; } + const confirmed = window.confirm( + "Submit your check-in?\n\n" + + "Please confirm your responses are complete and ready. " + + "After submitting, you can come back later and submit another check-in with updates.", + ); + if (!confirmed) return; setSubmitState({ kind: "submitting" }); try { // Strip values for hidden fields — never write data the user couldn't see.