diff options
author | Hailey <me@haileyok.com> | 2024-03-14 18:46:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 18:46:06 -0700 |
commit | 4f8381678da505737a96b7420c0f1ea8329f3672 (patch) | |
tree | 2d216fe1d68824cccad0d627a60cca48128a17c4 /src/view/com/posts/FeedSlice.tsx | |
parent | 6279c5cf3186183367d376d8ba9213688f37d252 (diff) | |
download | voidsky-4f8381678da505737a96b7420c0f1ea8329f3672.tar.zst |
Remove `FixedTouchableHighlight` , fix Android press issues (#3214)
* rm `FixedTouchableHighlight` * adjust delay for highlight * remove unnecessary background colors to support background ripple
Diffstat (limited to 'src/view/com/posts/FeedSlice.tsx')
-rw-r--r-- | src/view/com/posts/FeedSlice.tsx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/view/com/posts/FeedSlice.tsx b/src/view/com/posts/FeedSlice.tsx index 84edee4a1..49e48aa20 100644 --- a/src/view/com/posts/FeedSlice.tsx +++ b/src/view/com/posts/FeedSlice.tsx @@ -78,11 +78,7 @@ function ViewFullThread({slice}: {slice: FeedPostSlice}) { }, [slice.rootUri]) return ( - <Link - style={[pal.view, styles.viewFullThread]} - href={itemHref} - asAnchor - noFeedback> + <Link style={[styles.viewFullThread]} href={itemHref} asAnchor noFeedback> <View style={styles.viewFullThreadDots}> <Svg width="4" height="40"> <Line |