Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Last usage (#2944)

authored by

Eric Bailey and committed by
GitHub
9edb8260 0c470d1f

+4 -5
+4 -5
src/view/com/post/Post.tsx
··· 17 17 import {ContentHider} from '../util/moderation/ContentHider' 18 18 import {PostAlerts} from '../util/moderation/PostAlerts' 19 19 import {Text} from '../util/text/Text' 20 - import {RichText} from '../util/text/RichText' 20 + import {RichText} from '#/components/RichText' 21 21 import {PreviewableUserAvatar} from '../util/UserAvatar' 22 22 import {s, colors} from 'lib/styles' 23 23 import {usePalette} from 'lib/hooks/usePalette' ··· 29 29 import {Shadow, usePostShadow, POST_TOMBSTONE} from '#/state/cache/post-shadow' 30 30 import {Trans, msg} from '@lingui/macro' 31 31 import {useLingui} from '@lingui/react' 32 + import {atoms as a} from '#/alf' 32 33 33 34 export function Post({ 34 35 post, ··· 184 185 <View style={styles.postTextContainer}> 185 186 <RichText 186 187 testID="postText" 187 - type="post-text" 188 - richText={richText} 189 - lineHeight={1.3} 188 + value={richText} 190 189 numberOfLines={limitLines ? MAX_POST_LINES : undefined} 191 - style={s.flex1} 190 + style={[a.flex_1, a.text_md]} 192 191 /> 193 192 </View> 194 193 ) : undefined}