From ea1ec9af6bd4ac2978b4118a58e74ccefce866d5 Mon Sep 17 00:00:00 2001 From: Samip Bikram Thapa Date: Tue, 27 Aug 2024 12:09:19 +0545 Subject: [PATCH 1/2] Fix GitHub repository link redirect issue on Methodology page (#878) (#883) * Fix GitHub repository link redirect issue on Methodology page (#878) * refactor: update redirect link to https://github.com/CodeForPhilly/clean-and-green-philly --------- Co-authored-by: Gary Pang Co-authored-by: Samip B Thapa --- src/app/(content-pages)/methodology/MethodologyPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(content-pages)/methodology/MethodologyPage.tsx b/src/app/(content-pages)/methodology/MethodologyPage.tsx index 5042a583..b4691267 100644 --- a/src/app/(content-pages)/methodology/MethodologyPage.tsx +++ b/src/app/(content-pages)/methodology/MethodologyPage.tsx @@ -262,7 +262,7 @@ export default function MethodologyPage() {

Documentation of the data that we use is available on{' '} Date: Thu, 29 Aug 2024 11:54:40 +0545 Subject: [PATCH 2/2] task: Ensure image corners are rounded consistently --- src/components/InfoGraphicSection.tsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/components/InfoGraphicSection.tsx b/src/components/InfoGraphicSection.tsx index 0ba4723c..57d02f76 100644 --- a/src/components/InfoGraphicSection.tsx +++ b/src/components/InfoGraphicSection.tsx @@ -52,15 +52,17 @@ export const InfoGraphicSection = (props: InfoGraphicProps) => { const renderGraphicContent = () => { if ('image' in props) { return ( - {props.image.alt +

+ {props.image.alt +
); } else if ('component' in props) { return props.component;