From 0384387883877d8931415bfc436ad5ecc1e65a1c Mon Sep 17 00:00:00 2001 From: Limber Mamani Vallejos Date: Wed, 29 May 2024 14:06:17 -0400 Subject: [PATCH] feat: TM-936 change HBF -> Harit Bharat Fund --- src/pages/nursery/[uuid]/index.page.tsx | 2 +- src/pages/project/[uuid]/index.page.tsx | 2 +- src/pages/site/[uuid]/index.page.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/nursery/[uuid]/index.page.tsx b/src/pages/nursery/[uuid]/index.page.tsx index 2560abd40..364552260 100644 --- a/src/pages/nursery/[uuid]/index.page.tsx +++ b/src/pages/nursery/[uuid]/index.page.tsx @@ -96,7 +96,7 @@ const NurseryDetailPage = () => { nursery.framework_key === "ppc" ? t("Priceless Planet Coalition") : nursery.framework_key === "hbf" - ? "HBF" + ? "Harit Bharat Fund" : t("TerraFund") ]} hasBackButton={false} diff --git a/src/pages/project/[uuid]/index.page.tsx b/src/pages/project/[uuid]/index.page.tsx index 4b9d7bce0..8036db1b8 100644 --- a/src/pages/project/[uuid]/index.page.tsx +++ b/src/pages/project/[uuid]/index.page.tsx @@ -109,7 +109,7 @@ const ProjectDetailPage = () => { isPPC ? t("Priceless Planet Coalition") : isHBF - ? "HBF" + ? "Harit Bharat Fund" : isTerrafund ? t("TerraFund") : reportingFramework.name diff --git a/src/pages/site/[uuid]/index.page.tsx b/src/pages/site/[uuid]/index.page.tsx index f6904f40c..6debfea7c 100644 --- a/src/pages/site/[uuid]/index.page.tsx +++ b/src/pages/site/[uuid]/index.page.tsx @@ -81,7 +81,7 @@ const SiteDetailPage = () => { const subtitles = [ `${t("Organisation")}: ${site.organisation?.name}`, - isPPC ? t("Priceless Planet Coalition") : isHBF ? "HBF" : t("TerraFund") + isPPC ? t("Priceless Planet Coalition") : isHBF ? "Harit Bharat Fund" : t("TerraFund") ]; if (isPPC) { subtitles.push(t("Site ID: {id}", { id: site.ppc_external_id }));