diff --git a/src/domain/navigation/index.ts b/src/domain/navigation/index.ts index f580206e..60da2435 100644 --- a/src/domain/navigation/index.ts +++ b/src/domain/navigation/index.ts @@ -185,7 +185,7 @@ export function parseUrlPath(urlPath: string, currentNavPath: Path, segments.push(new Segment("sso", loginToken)); } else { // might be undefined, which will be turned into true by Segment - const value = decodeURIComponent(iterator.next().value); + const value = iterator.next().value; segments.push(new Segment(type, value)); } }