From f79dbf8e8dabf0160e0a4b9f7c5d110af78218a7 Mon Sep 17 00:00:00 2001 From: mmagi Date: Mon, 3 Nov 2025 21:23:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DMarkdown=E6=B8=B2?= =?UTF-8?q?=E6=9F=93=E5=8A=A0=E7=B2=97=E9=93=BE=E6=8E=A5=E6=97=B6=E6=98=BE?= =?UTF-8?q?=E7=A4=BA[object=20Object]=E7=9A=84=E9=97=AE=E9=A2=98=20(#5839)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- projects/app/src/components/Markdown/A.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/app/src/components/Markdown/A.tsx b/projects/app/src/components/Markdown/A.tsx index 9c9d9e5c6..41c4fc981 100644 --- a/projects/app/src/components/Markdown/A.tsx +++ b/projects/app/src/components/Markdown/A.tsx @@ -202,7 +202,7 @@ const A = ({ ); } - return {content || props?.href}; + return {children || props?.href}; }; export default React.memo(A);