remove some logs
This commit is contained in:
parent
88d98edbce
commit
a58743344c
@ -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 {
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user