diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-06-14 20:00:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 20:00:16 -0500 |
commit | 3663ee57f3e3d83a03ca105e0dda11cd94f68c98 (patch) | |
tree | 8f6b6b60a316e8446862cde7027fa6687cc04597 /src/view/com/posts/FeedItem.tsx | |
parent | 775b5e6578e5567bee333fc776b8f38072214832 (diff) | |
download | voidsky-3663ee57f3e3d83a03ca105e0dda11cd94f68c98.tar.zst |
Add testnet warning (#880)
* Add testnet warning * Add watermarks to posts * Call the test environment the Sandbox
Diffstat (limited to 'src/view/com/posts/FeedItem.tsx')
-rw-r--r-- | src/view/com/posts/FeedItem.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index c79d4c4e3..7854035f8 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -19,6 +19,7 @@ import {PostHider} from '../util/moderation/PostHider' import {ContentHider} from '../util/moderation/ContentHider' import {ImageHider} from '../util/moderation/ImageHider' import {RichText} from '../util/text/RichText' +import {PostSandboxWarning} from '../util/PostSandboxWarning' import * as Toast from '../util/Toast' import {UserAvatar} from '../util/UserAvatar' import {s} from 'lib/styles' @@ -245,6 +246,7 @@ export const FeedItem = observer(function ({ </Text> </Link> )} + <PostSandboxWarning /> <View style={styles.layout}> <View style={styles.layoutAvi}> <Link href={authorHref} title={item.post.author.handle} asAnchor> |