diff --git a/opentech/static_src/src/app/src/api/utils.js b/opentech/static_src/src/app/src/api/utils.js index 19bc84419fbe2fb7d8f3e2a0752b9435fdf15592..0794fface85515f4e25b933401a3959f19bb95d9 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 5902baf027b4ade64110e0b592bad5489c9a25e6..fc6f8203d9958f8e5810a96605de8fd03e6b3ef4 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