Skip to content

Commit

Permalink
Merge pull request #42629 from ahmedGaber93/issue-40078
Browse files Browse the repository at this point in the history
fix first action item background overlap on the next item
  • Loading branch information
Gonals authored Jun 6, 2024
2 parents 90dee7a + f07731b commit 056069e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/InvertedFlatList/CellRendererComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function CellRendererComponent(props: CellRendererComponentProps) {
* list items. Consequently, lower list items can overflow the upper list items.
* See: https://github.com/Expensify/App/issues/20451
*/
{zIndex: -props.index},
{zIndex: -props.index, position: 'relative'},
]}
/>
);
Expand Down

0 comments on commit 056069e

Please sign in to comment.