add: more things

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-07-06 15:21:36 +08:00
parent 41e98bb602
commit 244aa607f7
71 changed files with 2998 additions and 1014 deletions
+2
View File
@@ -186,6 +186,7 @@ function SignOutOverlay({ open }) {
// ─── Main UserMenu ────────────────────────────────────────────────────────────
export default function UserMenu() {
const { user, logout } = useAuth()
const { setTheme } = useTheme()
const { avatarUrl } = useProfile()
const navigate = useNavigate()
@@ -207,6 +208,7 @@ export default function UserMenu() {
const handleLogout = async () => {
setSigningOut(true)
await logout()
setTheme('light')
navigate('/login', { replace: true })
}