remove some logs

This commit is contained in:
me 2025-03-14 19:51:12 +02:00
parent 88d98edbce
commit a58743344c
2 changed files with 1 additions and 3 deletions

View File

@ -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 {

View File

@ -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);