Skip to content

Commit

Permalink
android fix BaseInvertedFlatList zIndex
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedGaber93 committed Jun 4, 2024
1 parent 887bf64 commit f07731b
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 f07731b

Please sign in to comment.