forked from AkkomaGang/akkoma-fe
review/remove error hiding
This commit is contained in:
parent
d766059dee
commit
c2c7e12aad
1 changed files with 4 additions and 4 deletions
|
@ -423,7 +423,7 @@ const favorite = ({ id, credentials }) => {
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return response.json()
|
return response.json()
|
||||||
} else {
|
} else {
|
||||||
return {}
|
throw new Error('Error favoriting post')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((data) => parseStatus(data))
|
.then((data) => parseStatus(data))
|
||||||
|
@ -438,7 +438,7 @@ const unfavorite = ({ id, credentials }) => {
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return response.json()
|
return response.json()
|
||||||
} else {
|
} else {
|
||||||
return {}
|
throw new Error('Error removing favorite')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((data) => parseStatus(data))
|
.then((data) => parseStatus(data))
|
||||||
|
@ -453,7 +453,7 @@ const retweet = ({ id, credentials }) => {
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return response.json()
|
return response.json()
|
||||||
} else {
|
} else {
|
||||||
return {}
|
throw new Error('Error repeating post')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((data) => parseStatus(data))
|
.then((data) => parseStatus(data))
|
||||||
|
@ -468,7 +468,7 @@ const unretweet = ({ id, credentials }) => {
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return response.json()
|
return response.json()
|
||||||
} else {
|
} else {
|
||||||
return {}
|
throw new Error('Error removing repeat')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((data) => parseStatus(data))
|
.then((data) => parseStatus(data))
|
||||||
|
|
Loading…
Reference in a new issue