fix: route polyline visibility + login URL

B1: Add ResizeObserver to MapView.jsx to handle layout settling.
The map canvas had 0 height at init because layout hadnt settled
when the useEffect fired. ResizeObserver calls map.resize() on
any container size change.

B11: Use native outpost start URL for login initiation:
/outpost.goauthentik.io/start?rd=%2F
This properly triggers auth flow and redirects to / after login.
Removed the Caddy /login handler that wasnt redirecting correctly.
This commit is contained in:
Matt 2026-04-27 03:51:34 +00:00
commit fe77c6d459
5 changed files with 11 additions and 4 deletions

View file

@ -61,7 +61,7 @@ export default function Panel({ onManeuverClick }) {
}
// Auth handlers
const handleLogin = () => { window.location.href = '/login' }
const handleLogin = () => { window.location.href = '/outpost.goauthentik.io/start?rd=%2F' }
const handleLogout = () => { window.location.href = '/outpost.goauthentik.io/sign_out' }
// Optimize stops