Skip to content

Commit 056069e

Browse files
authored
Merge pull request Expensify#42629 from ahmedGaber93/issue-40078
fix first action item background overlap on the next item
2 parents 90dee7a + f07731b commit 056069e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/InvertedFlatList/CellRendererComponent.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function CellRendererComponent(props: CellRendererComponentProps) {
2121
* list items. Consequently, lower list items can overflow the upper list items.
2222
* See: https://github.com/Expensify/App/issues/20451
2323
*/
24-
{zIndex: -props.index},
24+
{zIndex: -props.index, position: 'relative'},
2525
]}
2626
/>
2727
);

0 commit comments

Comments
 (0)