const handleSignIn = async (email: string) => {
setLoading(true);
const { error } = await supabase.auth.signInWithOtp({
email: email,
options: {
data: {
onboarded: false,
},
},
});
const handleSignIn = async (email: string) => {
setLoading(true);
const { error } = await supabase.auth.signInWithOtp({
email: email,
options: {
data: {
onboarded: false,
},
},
});