Update deployment status message on error
This commit is contained in:
parent
dcd80ac2c4
commit
882c17f384
|
@ -25,10 +25,8 @@
|
||||||
async function deployApp() {
|
async function deployApp() {
|
||||||
try {
|
try {
|
||||||
const response = await api.post("/api/deploy")
|
const response = await api.post("/api/deploy")
|
||||||
const json = await response.json()
|
|
||||||
if (response.status !== 200) {
|
if (response.status !== 200) {
|
||||||
console.log(json)
|
throw new Error(`status ${response.status}`)
|
||||||
throw new Error()
|
|
||||||
} else {
|
} else {
|
||||||
notifications.success(`Application published successfully`)
|
notifications.success(`Application published successfully`)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue