Fix message input not updating on chat list switch (#590)

This commit is contained in:
Bryan Lee
2023-04-18 22:11:13 +08:00
committed by GitHub
parent cb922d9dc6
commit 862f74a332
+5
View File
@@ -134,6 +134,11 @@ export const ChatMessage: FC<Props> = memo(({ message, messageIndex }) => {
});
};
useEffect(() => {
setMessageContent(message.content);
}, [message.content]);
useEffect(() => {
if (textareaRef.current) {
textareaRef.current.style.height = 'inherit';