diff options
author | Eric Bailey <git@esb.lol> | 2023-12-24 16:24:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 14:24:56 -0800 |
commit | b1994051344c8dbb1f3b710d6343591daa6756b8 (patch) | |
tree | 1c19750ad5f4748a29f0d41fd79142a7c1a7846f /src/view/com/post-thread/PostThreadItem.tsx | |
parent | 28e0df595fef024526da4a0ba22cba9fdc07808f (diff) | |
download | voidsky-b1994051344c8dbb1f3b710d6343591daa6756b8.tar.zst |
Hide posts tool (#2299)
* Set up hidden posts persisted state * Wrap moderatePost * Integrate hidden posts into moderation * Complete hide-post behaviors --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 2ff803071..6a377cdf6 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -5,9 +5,9 @@ import { AppBskyFeedDefs, AppBskyFeedPost, RichText as RichTextAPI, - moderatePost, PostModeration, } from '@atproto/api' +import {moderatePost_wrapped as moderatePost} from '#/lib/moderatePost_wrapped' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {Link, TextLink} from '../util/Link' import {RichText} from '../util/text/RichText' |