Encode URL for repo

Fixes #595
This commit is contained in:
Andrei Pohilko
2025-07-07 13:37:09 +01:00
parent 96e103ff84
commit 285cc1fe1e
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ const LinkWithSearchParams = ({
let prefixedUrl = to;
if (!clusterMode) {
prefixedUrl = `/${context}${to}`;
prefixedUrl = `/${encodeURIComponent(context)}${to}`;
}
return (