remove console.log(

This commit is contained in:
Romulus21
2023-09-24 16:13:28 +02:00
parent 00e7bd1808
commit f32e1600a8
5 changed files with 1 additions and 5 deletions

View File

@@ -16,7 +16,6 @@ const Register = () => {
try {
await axios.get('/sanctum/csrf-cookie')
const res = await axios.post('/api/register', {name, email, password})
console.log(name, email, password)
navigate('/')
} catch (e) {
console.error(e)

View File

@@ -20,7 +20,6 @@ const RainfallIndex = () => {
setLastPage(res.data.meta.last_page)
setRainfalls([...rainfalls, ...res.data.data])
} catch (error) {
console.log(error)
errorCatch(error)
}
}