How can I check if the user is currently logged in the beforeLoad of tanstack start/router? I am using convex auth
import { Outlet, createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/_authenticated')({
component: AuthenticatedLayoutComponent,
beforeLoad: async ({ context }) => {},
})
function AuthenticatedLayoutComponent() {
return <Outlet />
}