From 5203dabeace60cba63481c4e91e6b607cee0b4a0 Mon Sep 17 00:00:00 2001 From: Joel Brock Date: Thu, 11 Jun 2026 14:41:18 -0700 Subject: [PATCH] Submit confirm: trim copy and use 'survey' wording Drops the trailing sentence about returning later for another check-in (now redundant with the post-submit CTA) and matches the rest of the UI's 'survey' terminology. --- components/EngagementForm.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/EngagementForm.tsx b/components/EngagementForm.tsx index c05bfed..f2b88e9 100644 --- a/components/EngagementForm.tsx +++ b/components/EngagementForm.tsx @@ -322,9 +322,8 @@ 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.", + "Submit your survey?\n\n" + + "Please confirm your responses are complete and ready. ", ); if (!confirmed) return; setSubmitState({ kind: "submitting" });