Merge branch 'main' into feat/consent-disable

This commit is contained in:
Igor Monadical
2025-12-18 18:18:29 -05:00
committed by GitHub
20 changed files with 604 additions and 44 deletions

View File

@@ -13,9 +13,12 @@ export default function UserInfo() {
<Spinner size="xs" className="mx-3" />
) : !isAuthenticated && !isRefreshing ? (
<Link
href="/"
href="#"
className="font-light px-2"
onClick={() => auth.signIn("authentik")}
onClick={(e) => {
e.preventDefault();
auth.signIn("authentik");
}}
>
Log in
</Link>