Skip to content

Commit

Permalink
Merge pull request #52351 from bernhardoj/fix/52158-search-item-highl…
Browse files Browse the repository at this point in the history
…ight-doesn't-have-rounded-edges

Fix search item highlight doesn't have rounded edges
  • Loading branch information
luacmartins authored Nov 18, 2024
2 parents 0df56ac + 854d58c commit 037ac1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Search/SearchRouter/SearchRouterList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function SearchRouterItem(props: UserListItemProps<OptionData> | SearchQueryList
}
return (
<UserListItem
pressableStyle={[styles.br2]}
pressableStyle={[styles.br2, styles.ph3]}
// eslint-disable-next-line react/jsx-props-no-spreading
{...props}
/>
Expand Down Expand Up @@ -305,7 +305,7 @@ function SearchRouterList(
ListItem={SearchRouterItem}
containerStyle={[styles.mh100]}
sectionListStyle={[shouldUseNarrowLayout ? styles.ph5 : styles.ph2, styles.pb2]}
listItemWrapperStyle={[styles.pr3, styles.pl3]}
listItemWrapperStyle={[styles.pr0, styles.pl0]}
getItemHeight={getItemHeight}
onLayout={setPerformanceTimersEnd}
ref={ref}
Expand Down

0 comments on commit 037ac1b

Please sign in to comment.