From e9e085e804d154dbc9945d9526c2f885bd0fc4fb Mon Sep 17 00:00:00 2001 From: sudoer777 <78781902+sudoer777@users.noreply.github.com> Date: Thu, 2 Dec 2021 13:23:37 -0700 Subject: [PATCH] Remove console.log --- public/scripts/manage/account.js | 1 - 1 file changed, 1 deletion(-) diff --git a/public/scripts/manage/account.js b/public/scripts/manage/account.js index 4b11006..f9a7370 100644 --- a/public/scripts/manage/account.js +++ b/public/scripts/manage/account.js @@ -15,7 +15,6 @@ async function Initialize() { let accountID = params.get('account') || (document.getElementById('account-id') ? document.getElementById('account-id').value : null); if(accountID) { const account = await Data.getAccount(accountID); - console.log(account); nameTextbox.value = account.name;