From ed146a582c140b9a472298390dafbc07bd06cf60 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 21 Nov 2022 16:07:26 -0600 Subject: Add web linking and proper share controls --- src/view/com/post-thread/PostThread.tsx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'src/view/com/post-thread/PostThread.tsx') diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index 6b7f96e06..d819cc76c 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -6,7 +6,6 @@ import { PostThreadViewPostModel, } from '../../../state/models/post-thread-view' import {useStores} from '../../../state' -import {SharePostModel} from '../../../state/models/shell-ui' import {PostThreadItem} from './PostThreadItem' import {ErrorMessage} from '../util/ErrorMessage' @@ -17,11 +16,6 @@ export const PostThread = observer(function PostThread({ uri: string view: PostThreadViewModel }) { - const store = useStores() - - const onPressShare = (uri: string) => { - store.shell.openModal(new SharePostModel(uri)) - } const onRefresh = () => { view?.refresh().catch(err => console.error('Failed to refresh', err)) } @@ -55,11 +49,7 @@ export const PostThread = observer(function PostThread({ // = const posts = view.thread ? Array.from(flattenThread(view.thread)) : [] const renderItem = ({item}: {item: PostThreadViewPostModel}) => ( - + ) return (