fix
All checks were successful
Build / build (push) Successful in 2m30s

This commit is contained in:
Nareshkumar Rao 2025-04-05 00:30:22 +02:00
parent 952d9541b9
commit f640afbcb1

View File

@ -1,5 +1,6 @@
"use client";
import { signIn } from "next-auth/react";
import { useRouter } from "next/navigation";
export default function ActionButtons({ loggedIn }: { loggedIn: boolean }) {
@ -29,7 +30,7 @@ export default function ActionButtons({ loggedIn }: { loggedIn: boolean }) {
cursor: "pointer",
fontSize: "0.8rem",
}}
onClick={() => router.push("/blog/login")}
onClick={() => signIn()}
>
login
</div>