diff options
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 4cd35659f..752a054b4 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -72,7 +72,7 @@ export const Post = observer(function Post({uri}: {uri: string}) { replyHref = `/profile/${urip.hostname}/post/${urip.recordKey}` } const onPressReply = () => { - store.shell.openModal(new ComposePostModel(item.uri)) + store.shell.openModal(new ComposePostModel({replyTo: item.uri})) } const onPressToggleRepost = () => { item |