Skip to content

Commit

Permalink
fix add ph3 to listItemPressableStyle in case grouped expense
Browse files Browse the repository at this point in the history
  • Loading branch information
dominictb committed Jul 11, 2024
1 parent d54400f commit 5393d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SelectionList/Search/ReportListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function ReportListItem<TItem extends ListItem>({
return;
}

const listItemPressableStyle = [styles.selectionListPressableItemWrapper, styles.pv3, item.isSelected && styles.activeComponentBG, isFocused && styles.sidebarLinkActive];
const listItemPressableStyle = [styles.selectionListPressableItemWrapper, styles.pv3, item.isSelected && styles.activeComponentBG, isFocused && styles.sidebarLinkActive, styles.ph3];

const handleOnButtonPress = () => {
onSelectRow(item);
Expand Down

0 comments on commit 5393d7a

Please sign in to comment.