Skip to content

Commit

Permalink
fix: fix missing footer link for the newest flow
Browse files Browse the repository at this point in the history
  • Loading branch information
cgarcia-lightit committed Sep 17, 2024
1 parent 37c40e9 commit 6a44ae0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions apps/eo_web/src/layouts/Footer.tsx
Original file line number Diff line number Diff line change
@@ -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;
}
Expand Down Expand Up @@ -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,
Expand All @@ -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) {
Expand Down

0 comments on commit 6a44ae0

Please sign in to comment.