diff --git a/app/api/submit/route.ts b/app/api/submit/route.ts index 7f612b4..b995f0f 100644 --- a/app/api/submit/route.ts +++ b/app/api/submit/route.ts @@ -70,7 +70,7 @@ export async function POST(req: Request) { return NextResponse.json( { error: appEnv().isProduction - ? "Could not save your survey. Please try again, or contact your engagement coordinator." + ? "Could not save your survey. Please try again, or contact Chris @ FCI." : `Save failed: ${redact(msg)}`, }, { status: 500 }, diff --git a/components/EngagementForm.tsx b/components/EngagementForm.tsx index a5a0896..92515e3 100644 --- a/components/EngagementForm.tsx +++ b/components/EngagementForm.tsx @@ -692,8 +692,7 @@ function SuccessDestination({

Thank you. We've recorded this survey for{" "} - {orgName}. Your engagement coordinator will see - it on their next review. + {orgName}.

diff --git a/components/ReportView.tsx b/components/ReportView.tsx index be102ca..63c3127 100644 --- a/components/ReportView.tsx +++ b/components/ReportView.tsx @@ -1428,7 +1428,7 @@ function ErrorState({ message }: { message: string }) {

{message}

- If this keeps happening, please contact your engagement coordinator. + If this keeps happening, please contact your Chris @ FCI.

); diff --git a/config/form.ts b/config/form.ts index 2baa81e..4cbe86e 100644 --- a/config/form.ts +++ b/config/form.ts @@ -752,7 +752,7 @@ export const formConfig: FormConfig = { id: "org_engagement_check_in", title: "Co-op Survey", subtitle: - "Update tracking data for your co-op as you progress through the organizing stages. The questions you'll see depend on where you are in the framework.", + "Thank you for updating your co-op information. The questions you'll see depend on where you are in the Framework.", stageField: "current_stage", sections: [stage0, stage1, stage2, stage3, stage4, stage5], };