Fix publish action from command palette
This commit is contained in:
parent
5c65bc28e1
commit
d1a089f22c
|
@ -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")
|
||||
}
|
||||
|
|
|
@ -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",
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue