Skip to content

Commit

Permalink
remove debugging output
Browse files Browse the repository at this point in the history
Co-authored-by: Jordan Jensen <[email protected]>
  • Loading branch information
sagerb and dotNomad authored Oct 18, 2023
1 parent 652f7a3 commit b2ae445
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion web/src/utils/accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export const calculateName = (account: Account) => {

export const findAccount = (accountName: string, accounts: Account[]): Account | undefined => {
return accounts.find(account => {
console.log(`${account.name} vs ${accountName}`);
return (account.name === accountName);
});
};

0 comments on commit b2ae445

Please sign in to comment.