We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4256859 commit 68f1bd9Copy full SHA for 68f1bd9
app/utils/publishUtils.ts
@@ -130,7 +130,8 @@ export async function publishApp({
130
const data = await response.json();
131
if (data.success && data.app?.slug) {
132
// Construct the app URL from the response data
133
- const appUrl = data.appUrl || `https://${data.app.slug}.${new URL(APP_HOST_BASE_URL).hostname}`;
+ const appUrl =
134
+ data.appUrl || `https://${data.app.slug}.${new URL(APP_HOST_BASE_URL).hostname}`;
135
136
// Get the user's vibespace database to check for existing data
137
const userVibespaceDb = fireproof(`vu-${userId}`);
0 commit comments