From 33224eebf4ca7aaeb480eba3ff2719a561e4d169 Mon Sep 17 00:00:00 2001 From: Swetna Date: Mon, 29 Sep 2025 16:50:19 -0400 Subject: [PATCH] Updated body type to accept both string and tags --- app/src/components/shared/static/TextCardWithHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/shared/static/TextCardWithHeader.tsx b/app/src/components/shared/static/TextCardWithHeader.tsx index ef49b9e7..6bfd5649 100644 --- a/app/src/components/shared/static/TextCardWithHeader.tsx +++ b/app/src/components/shared/static/TextCardWithHeader.tsx @@ -3,7 +3,7 @@ import { colors } from '../../../designTokens'; interface Section { heading?: string; - body: string | string[]; + body: string | string[] | React.ReactNode | React.ReactNode[]; } interface TitleCardWithHeaderProps {