Skip to content

Commit

Permalink
fix code style with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mold committed Jul 17, 2023
1 parent 8bb5931 commit f1ab27b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function CellRendererComponent(props) {
* 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},
]}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function CellRendererComponent(props) {
* 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},
]}
/>
);
Expand Down
1 change: 0 additions & 1 deletion src/components/InvertedFlatList/index.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ class InvertedFlatList extends React.Component {
ListFooterComponentStyle={[styles.invert, this.props.ListFooterComponentStyle]}
verticalScrollbarPosition="left" // We are mirroring the X and Y axis, so we need to swap the scrollbar position
CellRendererComponent={CellRendererComponent}

/**
* To achieve absolute positioning and handle overflows for list items, the property must be disabled
* for Android native builds.
Expand Down

0 comments on commit f1ab27b

Please sign in to comment.