refactor(ReplyIndicator): add help text

This commit is contained in:
P. Reis 2024-12-06 18:00:53 -03:00
parent c25e5d5456
commit 2da74399b1
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ const ReplyIndicator: React.FC<IReplyIndicator> = ({ className, status, hideActi
className='break-words' className='break-words'
size='sm' size='sm'
direction={getTextDirection(status.search_index)} direction={getTextDirection(status.search_index)}
emojis={status?.emojis?.toJS() ?? status.emojis} emojis={status?.emojis?.toJS() ?? status.emojis} // Use toJS() if status.emojis is immutable; otherwise, fallback to plain status.emojis
mentions={status.mentions.toJS()} mentions={status.mentions.toJS()}
html={{ __html: status.content }} html={{ __html: status.content }}
/> />