diff --git a/src/storage/index.ts b/src/storage/index.ts index e3aaa9ffb8..426ed56e70 100644 --- a/src/storage/index.ts +++ b/src/storage/index.ts @@ -1,7 +1,7 @@ import {MMKV} from 'react-native-mmkv' import {IS_DEV} from '#/env' -import {Account,Device} from '#/storage/schema' +import {Account, Device} from '#/storage/schema' export * from '#/storage/schema' @@ -85,5 +85,6 @@ if (IS_DEV && typeof window !== 'undefined') { // @ts-ignore window.bsky_storage = { device, + account, } } diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 99950495f9..91452ff63c 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -29,6 +29,7 @@ import {useComposerControls} from '#/state/shell/composer' import {useMergedThreadgateHiddenReplies} from '#/state/threadgate-hidden-replies' import {PostThreadFollowBtn} from '#/view/com/post-thread/PostThreadFollowBtn' import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonText} from '#/components/Button' import {AppModerationCause} from '#/components/Pills' import {RichText} from '#/components/RichText' import {Text as NewText} from '#/components/Typography' @@ -367,6 +368,28 @@ let PostThreadItemLoaded = ({ /> )} + + {AppBskyFeedPost.isRecord(post.record) && post.record.tags ? ( + + {post.record.tags.map((tag, i) => ( + + ))} + + ) : null}