a906a8321c
Fix the "Continue as default dev user" button on /login page. Root cause: skipLogin() navigated to /admin but App.tsx guard checked getDevUser() (null after removal) and redirected back to /login, cancelling the navigation. Fix: Allow /admin/* routes to render in dev mode without requiring a stored dev user. The redirect guard now only applies to non-/admin/* routes when no dev user is set. Co-Authored-By: Paperclip <noreply@paperclip.ing>