Skip to content

Commit 68f1bd9

Browse files
committed
style: format appUrl assignment with line break for better readability
1 parent 4256859 commit 68f1bd9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/utils/publishUtils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ export async function publishApp({
130130
const data = await response.json();
131131
if (data.success && data.app?.slug) {
132132
// Construct the app URL from the response data
133-
const appUrl = data.appUrl || `https://${data.app.slug}.${new URL(APP_HOST_BASE_URL).hostname}`;
133+
const appUrl =
134+
data.appUrl || `https://${data.app.slug}.${new URL(APP_HOST_BASE_URL).hostname}`;
134135

135136
// Get the user's vibespace database to check for existing data
136137
const userVibespaceDb = fireproof(`vu-${userId}`);

0 commit comments

Comments
 (0)