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 Jan 22, 2024
1 parent 20f391f commit b19605e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function AccountList({

const [isDragging, setIsDragging] = useState(false);

const onDragStart = e => {
const onDragStart = () => {
setIsDragging(true);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export const BudgetCategories = memo(
items={expenseGroupIds}
strategy={verticalListSortingStrategy}
>
{expenseGroupItems.map((item, idx) => {
{expenseGroupItems.map(item => {
let content;
switch (item.type) {
case 'new-expense-category':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export function Accounts({
items={offbudgetAccounts}
strategy={verticalListSortingStrategy}
>
{closedAccounts.map((account, i) => (
{closedAccounts.map(account => (
<Account
key={account.id}
name={account.name}
Expand Down

0 comments on commit b19605e

Please sign in to comment.