1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Fix publish action from command palette

This commit is contained in:
Andrew Kingston 2023-07-05 09:31:37 +01:00
parent 5c65bc28e1
commit d1a089f22c
2 changed files with 3 additions and 3 deletions

View file

@ -208,8 +208,8 @@
async function deployApp() {
try {
await API.deployAppChanges()
notifications.success("Application published successfully")
await API.publishAppChanges($store.appId)
notifications.success("App published successfully")
} catch (error) {
notifications.error("Error publishing app")
}

View file

@ -87,7 +87,7 @@
try {
publishing = true
await API.publishAppChanges($store.appId)
notifications.send("App published", {
notifications.send("App published successfully", {
type: "success",
icon: "GlobeCheck",
})