diff --git a/frontend/src/components/authorization/AuthorizationLogoutBox.tsx b/frontend/src/components/authorization/AuthorizationLogoutBox.tsx
index 448df34..accf467 100644
--- a/frontend/src/components/authorization/AuthorizationLogoutBox.tsx
+++ b/frontend/src/components/authorization/AuthorizationLogoutBox.tsx
@@ -66,7 +66,7 @@ export function AuthorizationLogoutBox(): JSX.Element {
- navigate("l/")}>
+ navigate("l/logged-in/")}>
Continue to Sophon
diff --git a/frontend/src/utils/ParsePath.ts b/frontend/src/utils/ParsePath.ts
index 28f5835..91a5f23 100644
--- a/frontend/src/utils/ParsePath.ts
+++ b/frontend/src/utils/ParsePath.ts
@@ -59,7 +59,7 @@ export function parsePath(path: string): ParsedPath {
result.researchGroup = path.match(/[/]g[/]([A-Za-z0-9_-]+)/)?.[1]
result.researchProject = path.match(/[/]p[/]([A-Za-z0-9_-]+)/)?.[1]
result.notebook = path.match(/[/]n[/]([A-Za-z0-9_-]+)/)?.[1]
- result.loggedIn = Boolean(path.match(/[/]l[/]/))
+ result.loggedIn = Boolean(path.match(/[/]l[/]logged-in/))
if(result.instance) {
result.count += 1