diff --git a/frontend/src/CommentForm.jsx b/frontend/src/CommentForm.jsx index 9e36e2a..36877f3 100644 --- a/frontend/src/CommentForm.jsx +++ b/frontend/src/CommentForm.jsx @@ -17,7 +17,6 @@ export default function CommentForm({ url, site, path }) { const [error, setError] = useState(null); const handleSubmit = e => { - console.log(e); e.preventDefault(); let form = { @@ -52,7 +51,6 @@ export default function CommentForm({ url, site, path }) { body: JSON.stringify(form) }) .then(response => { - console.log(response); if (response.ok) { window.location.reload(); } else { diff --git a/frontend/src/CommentList.jsx b/frontend/src/CommentList.jsx index 4a5b275..587e633 100644 --- a/frontend/src/CommentList.jsx +++ b/frontend/src/CommentList.jsx @@ -19,7 +19,7 @@ export default function CommentList({ url, site, path }) { const [comments, setComments] = useState([]); useEffect(() => { fetch(url + '/api/' + site + '/' + path) - .then(response => { console.log(response); return response.json() }) + .then(response => { return response.json() }) .then(data => setComments(data)) .catch(error => { console.log(error);