diff --git a/src/components/Apps/AppViewer.tsx b/src/components/Apps/AppViewer.tsx index a83d4f0..fd0ef31 100644 --- a/src/components/Apps/AppViewer.tsx +++ b/src/components/Apps/AppViewer.tsx @@ -75,7 +75,7 @@ export const AppViewer = React.forwardRef(({ app , hide, isDevMode, skipAuth}, i const copyLinkFunc = (e) => { const {tabId} = e.detail if(tabId === app?.tabId){ - let link = 'qortal://' + app?.service + '/' + app?.name + let link = 'qortal://' + app?.service + '/' + app?.name.replace(/ /g, '%20'); if(path && path.startsWith('/')){ link = link + removeTrailingSlash(path) }