diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-01 14:25:41 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-01 14:25:41 -0500 |
commit | 8ae6e67eea8890f639dbaa9423e99cad5e28502f (patch) | |
tree | 720f9e4a4fdd5e394acd74b2d62676dc8c7b8ebc /src/view/com/post-thread/PostThreadItem.tsx | |
parent | 05055e184dbd1d103fc8bfc74ba86f0757937b14 (diff) | |
download | voidsky-8ae6e67eea8890f639dbaa9423e99cad5e28502f.tar.zst |
Rework the composer to a less buggy solution
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 4f0683f09..90cffc029 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -6,7 +6,6 @@ import {AtUri} from '../../../third-party/uri' import * as PostType from '../../../third-party/api/src/types/app/bsky/post' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {PostThreadViewPostModel} from '../../../state/models/post-thread-view' -import {ComposePostModel} from '../../../state/models/shell' import {Link} from '../util/Link' import {RichText} from '../util/RichText' import {PostDropdownBtn} from '../util/DropdownBtn' @@ -49,12 +48,10 @@ export const PostThreadItem = observer(function PostThreadItem({ const repostsTitle = 'Reposts of this post' const onPressReply = () => { - store.shell.openModal( - new ComposePostModel({ - replyTo: {uri: item.uri, cid: item.cid}, - onPost: onPostReply, - }), - ) + store.shell.openComposer({ + replyTo: {uri: item.uri, cid: item.cid}, + onPost: onPostReply, + }) } const onPressToggleRepost = () => { item |