1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Update deployment status message to not confuse user

This commit is contained in:
Andrew Kingston 2021-05-24 14:08:08 +01:00
parent 1a4b39412a
commit dcd80ac2c4

View file

@ -24,11 +24,13 @@
async function deployApp() {
try {
notifications.info(`Deployment started. Please wait.`)
const response = await api.post("/api/deploy")
const json = await response.json()
if (response.status !== 200) {
console.log(json)
throw new Error()
} else {
notifications.success(`Application published successfully`)
}
if (analytics.requestFeedbackOnDeploy()) {
@ -36,7 +38,7 @@
}
} catch (err) {
analytics.captureException(err)
notifications.error("Deployment unsuccessful. Please try again later.")
notifications.error(`Error publishing app: ${err}`)
}
}