From 2d31b6b6395f4b604c080da83ef2e1d0aecefcb1 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Sat, 5 Jul 2025 07:13:51 +0300 Subject: [PATCH] fix name spacing link --- src/components/Apps/AppViewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Apps/AppViewer.tsx b/src/components/Apps/AppViewer.tsx index 30120d2..bc40306 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) }