Browse Source

Update deployment status message on error

pull/1542/head
Andrew Kingston 5 years ago
parent
commit
882c17f384
  1. 4
      packages/builder/src/components/deploy/DeployModal.svelte

4
packages/builder/src/components/deploy/DeployModal.svelte

@ -25,10 +25,8 @@
async function deployApp() {
try {
const response = await api.post("/api/deploy")
const json = await response.json()
if (response.status !== 200) {
console.log(json)
throw new Error()
throw new Error(`status ${response.status}`)
} else {
notifications.success(`Application published successfully`)
}

Loading…
Cancel
Save