From f0292a8aad8fa851836b6463cc354dedcf4785c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=8F=8E=EF=B8=8F=20Yumo?= Date: Mon, 23 Dec 2024 10:59:57 +0800 Subject: [PATCH] fix: code error --- components/bubble/Bubble.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bubble/Bubble.tsx b/components/bubble/Bubble.tsx index 13a22fb2..48285161 100644 --- a/components/bubble/Bubble.tsx +++ b/components/bubble/Bubble.tsx @@ -119,7 +119,7 @@ const Bubble: React.ForwardRefRenderFunction = (props, r contentNode = ( <> {mergedContent as React.ReactNode} - {isTyping && typingSuffix} + {isTyping && customSuffix} ); }