From b2ae44530cdc5cdbe87b1a0d66554e99bde1eba2 Mon Sep 17 00:00:00 2001 From: Bill Sager Date: Tue, 17 Oct 2023 17:02:11 -0700 Subject: [PATCH] remove debugging output Co-authored-by: Jordan Jensen --- web/src/utils/accounts.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/utils/accounts.ts b/web/src/utils/accounts.ts index a22b9bc89..6aa6309f7 100644 --- a/web/src/utils/accounts.ts +++ b/web/src/utils/accounts.ts @@ -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); }); };