diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index 37f0b2f..175aeaa 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -43,7 +43,7 @@ export async function getWorkflowLandingUrl( }, }); const id = (await res.json()).uuid; - return WORKFLOW_LANDING_URL_PREFIX + encodeURIComponent(id); + return `${WORKFLOW_LANDING_URL_PREFIX}${encodeURIComponent(id)}?public=true`; } /**