Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Prevent post meta misclicks in QT (#2701)

authored by

dan and committed by
GitHub
9ccad0ba 41860d8b

+9 -7
+9 -7
src/view/com/util/post-embeds/QuoteEmbed.tsx
··· 113 113 hoverStyle={{borderColor: pal.colors.borderLinkHover}} 114 114 href={itemHref} 115 115 title={itemTitle}> 116 - <PostMeta 117 - author={quote.author} 118 - showAvatar 119 - authorHasWarning={false} 120 - postHref={itemHref} 121 - timestamp={quote.indexedAt} 122 - /> 116 + <View pointerEvents="none"> 117 + <PostMeta 118 + author={quote.author} 119 + showAvatar 120 + authorHasWarning={false} 121 + postHref={itemHref} 122 + timestamp={quote.indexedAt} 123 + /> 124 + </View> 123 125 {moderation ? ( 124 126 <PostAlerts moderation={moderation} style={styles.alert} /> 125 127 ) : null}