diff --git a/invokeai/frontend/web/src/features/nodes/components/sidePanel/WorkflowListMenu/ShareWorkflowModal.tsx b/invokeai/frontend/web/src/features/nodes/components/sidePanel/WorkflowListMenu/ShareWorkflowModal.tsx index 7af4875211..faa395c47a 100644 --- a/invokeai/frontend/web/src/features/nodes/components/sidePanel/WorkflowListMenu/ShareWorkflowModal.tsx +++ b/invokeai/frontend/web/src/features/nodes/components/sidePanel/WorkflowListMenu/ShareWorkflowModal.tsx @@ -43,7 +43,7 @@ export const ShareWorkflowModal = () => { if (!workflowToShare || !projectUrl) { return null; } - return `${projectUrl}/studio?selectedWorkflowId=${workflowToShare.workflow_id}`; + return `${window.location.origin}/${projectUrl}/studio?selectedWorkflowId=${workflowToShare.workflow_id}`; }, [projectUrl, workflowToShare]); const handleCopy = useCallback(() => {