From 37c40e94bbae20a0b700d7b9a226cc12e2e5c56e Mon Sep 17 00:00:00 2001
From: "charly.garcia" <carlos.garcia@lightit.io>
Date: Tue, 17 Sep 2024 18:32:54 -0300
Subject: [PATCH] feat: add related copies text for the newest flows

---
 apps/eo_web/src/components/FAQs.tsx                     | 6 ++++++
 apps/eo_web/src/screens/Cancer/CancerSurveyThankYou.tsx | 8 +++++++-
 apps/eo_web/src/screens/ProfilingThankYou.tsx           | 6 ++++++
 3 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/apps/eo_web/src/components/FAQs.tsx b/apps/eo_web/src/components/FAQs.tsx
index 159f1502..710787e7 100644
--- a/apps/eo_web/src/components/FAQs.tsx
+++ b/apps/eo_web/src/components/FAQs.tsx
@@ -21,6 +21,12 @@ const flowsWithCOrgFaqs: FlowType[] = [
   Flows.unite_for_her,
   Flows.mass_retirees,
   Flows.stupid_cancer,
+
+  // The flows related to resources_center_1/2
+  Flows.cancer_buddy,
+  Flows.friend_family,
+  Flows.northwell_systems,
+  Flows.real_of_caring,
 ];
 
 const flowsWithInovaFaqs: FlowType[] = [Flows.inova, Flows.uva];
diff --git a/apps/eo_web/src/screens/Cancer/CancerSurveyThankYou.tsx b/apps/eo_web/src/screens/Cancer/CancerSurveyThankYou.tsx
index 41550014..c4615b01 100644
--- a/apps/eo_web/src/screens/Cancer/CancerSurveyThankYou.tsx
+++ b/apps/eo_web/src/screens/Cancer/CancerSurveyThankYou.tsx
@@ -7,7 +7,7 @@ import { HowEOWorks } from "~/components/HowEOWorks";
 import { LayoutDefault } from "~/layouts";
 import { Footer } from "~/layouts/Footer";
 import { FooterFull } from "~/layouts/FooterFull";
-import { type Channel, Flows, type FlowType } from "~/stores/useProfilingStore";
+import { Flows, type Channel, type FlowType } from "~/stores/useProfilingStore";
 import { useSurveyStore } from "~/stores/useSurveyStore";
 
 const flowsWithSmallFooter: FlowType[] = [
@@ -20,6 +20,12 @@ const flowsWithSmallFooter: FlowType[] = [
   Flows.employer_center,
   Flows.inova,
   Flows.uva,
+
+  // The flows related to resources_center_1/2
+  Flows.cancer_buddy,
+  Flows.friend_family,
+  Flows.northwell_systems,
+  Flows.real_of_caring,
 ];
 
 export const CancerSurveyThankYou = () => {
diff --git a/apps/eo_web/src/screens/ProfilingThankYou.tsx b/apps/eo_web/src/screens/ProfilingThankYou.tsx
index 08b5b2a3..7ef5c588 100644
--- a/apps/eo_web/src/screens/ProfilingThankYou.tsx
+++ b/apps/eo_web/src/screens/ProfilingThankYou.tsx
@@ -30,6 +30,12 @@ const flowsWithSmallFooter: FlowType[] = [
   Flows.uva,
   Flows.imerman,
   Flows.unite_for_her,
+
+  // The flows related to resources_center_1/2
+  Flows.cancer_buddy,
+  Flows.friend_family,
+  Flows.northwell_systems,
+  Flows.real_of_caring,
 ];
 
 export const ProfilingThankYou = () => {