From 4a711fde74ac97e89ae8ec91b4abc2cb7f8c85fc Mon Sep 17 00:00:00 2001 From: Ryan Carbotte Date: Tue, 14 Apr 2020 09:44:17 -0500 Subject: [PATCH] fix: Removed a debug statement left behind --- js/contributors.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/contributors.js b/js/contributors.js index c3d09e5..e3cf7eb 100644 --- a/js/contributors.js +++ b/js/contributors.js @@ -4,7 +4,6 @@ function getContributors() { jQuery.ajax('https://api.github.com/repos/mikebryant/ac-nh-turnip-prices/contributors', {}) .done(function (data) { data.forEach((contributor, idx) => { - console.debug('DEBUG:', contributor); container.append(`${contributor.login}`); if (idx < data.length - 1) { container.append(', ');