From 6c55f7a759409a4c058482ed300186bfde73173c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Fri, 13 Feb 2026 16:25:48 +0000 Subject: [PATCH] public: broken faq markup --- apps/public/src/components/faq.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/apps/public/src/components/faq.tsx b/apps/public/src/components/faq.tsx index fc249792..11b78f3a 100644 --- a/apps/public/src/components/faq.tsx +++ b/apps/public/src/components/faq.tsx @@ -22,7 +22,10 @@ export const Faqs = ({ children }: { children: React.ReactNode }) => ( export const FaqItem = ({ question, children, -}: { question: string; children: string | React.ReactNode }) => ( +}: { + question: string; + children: string | React.ReactNode; +}) => ( - {typeof children === 'string' ? ( - {children} - ) : ( - children - )} +
+ {typeof children === 'string' ? ( + {children} + ) : ( + children + )} +
);