Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Jan 22, 2024
1 parent e7ca064 commit 20f391f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/desktop-client/src/components/sidebar/Accounts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export function Accounts({
items={budgetedAccounts}
strategy={verticalListSortingStrategy}
>
{budgetedAccounts.map((account, i) => (
{budgetedAccounts.map(account => (
<Account
key={account.id}
name={account.name}
Expand Down Expand Up @@ -186,7 +186,7 @@ export function Accounts({
items={offbudgetAccounts}
strategy={verticalListSortingStrategy}
>
{offbudgetAccounts.map((account, i) => (
{offbudgetAccounts.map(account => (
<Account
key={account.id}
name={account.name}
Expand Down

0 comments on commit 20f391f

Please sign in to comment.