1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13: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() { async function deployApp() {
try { try {
await API.deployAppChanges() await API.publishAppChanges($store.appId)
notifications.success("Application published successfully") notifications.success("App published successfully")
} catch (error) { } catch (error) {
notifications.error("Error publishing app") notifications.error("Error publishing app")
} }

View file

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