From f4b64ab7e15b8cefe6274487d8a4155f6e4e34cd Mon Sep 17 00:00:00 2001 From: Sydney Walcoff Date: Thu, 18 Jan 2024 18:22:03 -0800 Subject: [PATCH] adding something else state and recovery to env example --- products/statement-generator/.env.example | 3 +++ products/statement-generator/src/contexts/FormStateProps.ts | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/products/statement-generator/.env.example b/products/statement-generator/.env.example index fa32fea0..caaed5fe 100644 --- a/products/statement-generator/.env.example +++ b/products/statement-generator/.env.example @@ -37,6 +37,9 @@ REACT_APP_GOALS_HOW=I am learning new ways to work that go beyond eating. REACT_APP_CLEAR_RECORD_WHY=It will help me make a better life for me and my family. REACT_APP_CLEAR_RECORD_HOW=If my record no longer says I have poison resistance, I can be hired for other jobs. +REACT_APP_RECOVERY_NAME=Recovery Palace +REACT_APP_RECOVERY_DESCRIPTION=where princesses go to recover + REACT_APP_ACTIVITY_NAME=Helping rescue cats REACT_APP_ACTIVITY_DESCRIPTION=Making sure they have a safe home diff --git a/products/statement-generator/src/contexts/FormStateProps.ts b/products/statement-generator/src/contexts/FormStateProps.ts index d301f0bf..2702a131 100644 --- a/products/statement-generator/src/contexts/FormStateProps.ts +++ b/products/statement-generator/src/contexts/FormStateProps.ts @@ -203,6 +203,10 @@ export const sampleStepState = { unemploymentState: { unemploymentDescription: process.env.REACT_APP_UNEMPLOYMENT_DESCRIPTION, }, + somethingElseState: { + activityName: process.env.REACT_APP_ACTIVITY_NAME, + activityDescription: process.env.REACT_APP_ACTIVITY_DESCRIPTION, + }, goalsState: { goals: process.env.REACT_APP_GOALS, goalsHow: process.env.REACT_APP_GOALS_HOW,