Skip to content

Commit 8f28903

Browse files
Mary Hipppsychedelicious
authored andcommitted
remove extra slash in workflow share link
1 parent a071f27 commit 8f28903

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/frontend/web/src/features/nodes/components/sidePanel/WorkflowListMenu/ShareWorkflowModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const ShareWorkflowModal = () => {
4343
if (!workflowToShare || !projectUrl) {
4444
return null;
4545
}
46-
return `${window.location.origin}/${projectUrl}/studio?selectedWorkflowId=${workflowToShare.workflow_id}`;
46+
return `${window.location.origin}${projectUrl}/studio?selectedWorkflowId=${workflowToShare.workflow_id}`;
4747
}, [projectUrl, workflowToShare]);
4848

4949
const handleCopy = useCallback(() => {

0 commit comments

Comments
 (0)