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/post-thread/PostThreadItem.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/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 7efd535f2..cd746f9a9 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -432,7 +432,6 @@ let PostThreadItemLoaded = ({ <PostHider testID={`postThreadItem-by-${post.author.handle}`} href={postHref} - style={[pal.view]} moderation={moderation.content} iconSize={isThreadedChild ? 26 : 38} iconStyles={ @@ -622,7 +621,6 @@ function PostOuterWrapper({ return ( <View style={[ - pal.view, pal.border, styles.cursor, { @@ -650,7 +648,6 @@ function PostOuterWrapper({ <View style={[ styles.outer, - pal.view, pal.border, showParentReplyLine && hasPrecedingItem && styles.noTopBorder, styles.cursor, |