diff --git a/packages/builder/src/pages/builder/portal/overview/[application]/index.svelte b/packages/builder/src/pages/builder/portal/overview/[application]/index.svelte
index 293f19ebe..2a5cdaf3b 100644
--- a/packages/builder/src/pages/builder/portal/overview/[application]/index.svelte
+++ b/packages/builder/src/pages/builder/portal/overview/[application]/index.svelte
@@ -139,9 +139,10 @@
notifications.success("App ID copied to clipboard.")
}
- const exportApp = app => {
- const id = isPublished ? app.prodId : app.devId
+ const exportApp = (app, opts = { published: false }) => {
const appName = encodeURIComponent(app.name)
+ const id = opts?.published ? app.prodId : app.devId
+ // always export the development version
window.location = `/api/backups/export?appId=${id}&appname=${appName}`
}
@@ -266,12 +267,21 @@
-