From 6a44ae071081492d4541a5b153ce56c4e1f0bba0 Mon Sep 17 00:00:00 2001 From: "charly.garcia" Date: Tue, 17 Sep 2024 18:42:11 -0300 Subject: [PATCH] fix: fix missing footer link for the newest flow --- apps/eo_web/src/layouts/Footer.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/apps/eo_web/src/layouts/Footer.tsx b/apps/eo_web/src/layouts/Footer.tsx index 1e08f11d..474f870a 100644 --- a/apps/eo_web/src/layouts/Footer.tsx +++ b/apps/eo_web/src/layouts/Footer.tsx @@ -1,11 +1,10 @@ import React from "react"; import { tw } from "@eo/shared"; -import { Typography, icons } from "@eo/ui"; +import { icons, Typography } from "@eo/ui"; import { Flows, type FlowType } from "~/stores/useProfilingStore"; - interface FooterProps { flow: FlowType; } @@ -134,6 +133,12 @@ const stupid_cancer = [ }, ...basicData, ]; + +const cancer_buddy = [...basicData]; +const real_of_caring = [...basicData]; +const friend_family = [...basicData]; +const northwell_systems = [...basicData]; + const allData = { c_org, cancer_pilot, @@ -149,6 +154,10 @@ const allData = { unite_for_her, mass_retirees, stupid_cancer, + cancer_buddy, + real_of_caring, + friend_family, + northwell_systems, }; export function Footer({ flow }: FooterProps) {