Skip to content

Commit e9c1b1e

Browse files
authored
refactor: code semantics (#391)
* refactor: code semantics, typingSuffix -> customSuffix * fix: code error
1 parent 02d7729 commit e9c1b1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bun.lockb

695 Bytes
Binary file not shown.

components/bubble/Bubble.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const Bubble: React.ForwardRefRenderFunction<BubbleRef, BubbleProps> = (props, r
6161
const contextConfig = useXComponentConfig('bubble');
6262

6363
// ============================ Typing ============================
64-
const [typingEnabled, typingStep, typingInterval, typingSuffix] = useTypingConfig(typing);
64+
const [typingEnabled, typingStep, typingInterval, customSuffix] = useTypingConfig(typing);
6565

6666
const [typedContent, isTyping] = useTypedEffect(
6767
content,
@@ -101,7 +101,7 @@ const Bubble: React.ForwardRefRenderFunction<BubbleRef, BubbleProps> = (props, r
101101
`${prefixCls}-${placement}`,
102102
{
103103
[`${prefixCls}-rtl`]: direction === 'rtl',
104-
[`${prefixCls}-typing`]: isTyping && !loading && !messageRender && !typingSuffix,
104+
[`${prefixCls}-typing`]: isTyping && !loading && !messageRender && !customSuffix,
105105
},
106106
);
107107

@@ -119,7 +119,7 @@ const Bubble: React.ForwardRefRenderFunction<BubbleRef, BubbleProps> = (props, r
119119
contentNode = (
120120
<>
121121
{mergedContent as React.ReactNode}
122-
{isTyping && typingSuffix}
122+
{isTyping && customSuffix}
123123
</>
124124
);
125125
}

0 commit comments

Comments
 (0)