From 0e0984fc44e1e0cf89a75f78ae37e704bf8c53a3 Mon Sep 17 00:00:00 2001 From: Justin Gasper Date: Fri, 12 Apr 2024 17:51:02 +1000 Subject: [PATCH] Fix extraneous logging (CORE-399) --- src/shared/components/challenge-detail/Registrants/index.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/shared/components/challenge-detail/Registrants/index.jsx b/src/shared/components/challenge-detail/Registrants/index.jsx index 0d238d2cd..a97e241b4 100644 --- a/src/shared/components/challenge-detail/Registrants/index.jsx +++ b/src/shared/components/challenge-detail/Registrants/index.jsx @@ -137,7 +137,6 @@ export default class Registrants extends React.Component { const { statisticsData, } = this.props; - console.log(JSON.stringify(statisticsData, null, 4)); let submissionDate; const statistic = (statisticsData || []).find(x => x.handle === registrant.memberHandle); if (statistic && statistic.submissions && statistic.submissions.length > 0) {