Auth restricted endpoint is picky about the trailing slash, use it consistently.

This commit is contained in:
2026-02-04 20:35:29 +00:00
parent f45c57e901
commit 87e1443e7d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ const settingsMenu = (e: Event) => {
// Show login option only in public mode (non-public modes trigger auth automatically)
items.push({ label: '🔐 Login', onClick: async () => {
try {
await showAuthIframe('/auth/restricted#theme=light')
await showAuthIframe('/auth/restricted/#theme=light')
resumeWatching()
} catch (e) {
console.log('Login cancelled')