From 7e129805557e91e3edffc202a25b06854dbce08c Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:43:10 -0700 Subject: [PATCH] fix: add `?public=true` to workflow landing urls (#137) --- app/utils/galaxy-api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`; } /**