diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-18 16:43:18 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-18 16:43:18 -0600 |
commit | 36dc1c752556b8413dfb4d8fae6f930888489224 (patch) | |
tree | 79980e5d08632bb5cce324ae8c16bed7c8ba8760 /src/view/com/util/PostEmbeds.tsx | |
parent | c3caf4826e05623eeadd19c52402d6bf52494197 (diff) | |
download | voidsky-36dc1c752556b8413dfb4d8fae6f930888489224.tar.zst |
Reduce confusing visual feedback while scrolling
Diffstat (limited to 'src/view/com/util/PostEmbeds.tsx')
-rw-r--r-- | src/view/com/util/PostEmbeds.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/PostEmbeds.tsx b/src/view/com/util/PostEmbeds.tsx index ae9212a72..5e1d570b6 100644 --- a/src/view/com/util/PostEmbeds.tsx +++ b/src/view/com/util/PostEmbeds.tsx @@ -97,7 +97,7 @@ export function PostEmbeds({ const externalEmbed = embed as AppBskyEmbedExternal.Presented const link = externalEmbed.external return ( - <Link style={[styles.extOuter, style]} href={link.uri}> + <Link style={[styles.extOuter, style]} href={link.uri} noFeedback> {link.thumb ? ( <AutoSizedImage style={style} uri={link.thumb} /> ) : undefined} |