remove debug code

This commit is contained in:
notmd
2023-01-26 01:02:27 +07:00
parent 3c9e5388ba
commit 1af8079e17
+2 -3
View File
@@ -66,13 +66,12 @@ function Signin({ providers }: SigninProps) {
}
}, [router]);
const signinWithEmail = async (data: { email: string }) => {
const res = await signIn(email.id, {
const signinWithEmail = (data: { email: string }) => {
signIn(email.id, {
callbackUrl: "/dashboard",
email: data.email,
captcha: captcha.current?.getResponse(),
});
console.log(res);
};
const { colorMode } = useColorMode();