Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Nov 25, 2023
1 parent 8471b15 commit d6e0817
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ function AccountList({
<Fragment key={item.id}>
{renderAccountItem({
...(getItemProps ? getItemProps({ item }) : null),
item: item,
item,
highlighted: highlightedIndex === idx,
embedded: embedded,
embedded,
})}
</Fragment>,
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function CategoryList({
key: 'split',
...(getItemProps ? getItemProps({ item }) : null),
highlighted: highlightedIndex === idx,
embedded: embedded,
embedded,
});
}

Expand All @@ -78,9 +78,9 @@ function CategoryList({
<Fragment key={item.id}>
{renderCategoryItem({
...(getItemProps ? getItemProps({ item }) : null),
item: item,
item,
highlighted: highlightedIndex === idx,
embedded: embedded,
embedded,
})}
</Fragment>
</Fragment>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ function PayeeList({
<Fragment key={item.id}>
{renderPayeeItem({
...(getItemProps ? getItemProps({ item }) : null),
item: item,
item,
highlighted: highlightedIndex === idx + offset,
embedded: embedded,
embedded,
})}
</Fragment>

Expand Down

0 comments on commit d6e0817

Please sign in to comment.