From e3771a63abf0638b5aa146dea3e37ad7e4c133b1 Mon Sep 17 00:00:00 2001
From: Tomasz Knapik <hi@tmkn.org>
Date: Wed, 9 Jan 2019 19:46:27 +0000
Subject: [PATCH] delete debug logs

---
 opentech/static_src/src/app/src/api/utils.js                 | 1 -
 opentech/static_src/src/app/src/redux/actions/submissions.js | 3 ---
 2 files changed, 4 deletions(-)

diff --git a/opentech/static_src/src/app/src/api/utils.js b/opentech/static_src/src/app/src/api/utils.js
index 19bc84419..0794fface 100644
--- a/opentech/static_src/src/app/src/api/utils.js
+++ b/opentech/static_src/src/app/src/api/utils.js
@@ -3,7 +3,6 @@ const getBaseUrl = () => {
 };
 
 export async function apiFetch(path, method = 'GET', params, options) {
-    console.log('apifetch');
     const url = new URL(getBaseUrl());
     url.pathname = path;
 
diff --git a/opentech/static_src/src/app/src/redux/actions/submissions.js b/opentech/static_src/src/app/src/redux/actions/submissions.js
index 5902baf02..fc6f8203d 100644
--- a/opentech/static_src/src/app/src/redux/actions/submissions.js
+++ b/opentech/static_src/src/app/src/redux/actions/submissions.js
@@ -11,13 +11,10 @@ export const setCurrentSubmissionRound = id => ({
 });
 
 export const fetchSubmissionsByRound = id => {
-    console.log('fetch submissions by round');
     return async function(dispatch) {
         //dispatch(fetchSubmissionsByRoundBegin());
         try {
-            console.log('before api call');
             const response = await api.fetchSubmissionsByRound(id);
-            console.log('response', response);
             const json = await response.json();
             if (!response.ok) {
                 // handle error
-- 
GitLab