Fix text input not updating

This commit is contained in:
Eric Bailey
2026-02-05 10:12:33 -06:00
parent 1584c2de48
commit 9e074bcfc8
+1 -1
View File
@@ -1115,7 +1115,7 @@ export const ComposePost = ({
onLayout={onScrollViewLayout}>
{replyTo ? <ComposerReplyTo replyTo={replyTo} /> : undefined}
{thread.posts.map((post, index) => (
<React.Fragment key={post.id}>
<React.Fragment key={post.id + (composerState.draftId ?? '')}>
<ComposerPost
post={post}
dispatch={composerDispatch}