There seems to be a situation where users are attempting to sign in to my system in large numbers, which utilizes authentication through supabase. While they offer support for captcha tokens like hCaptcha, I am struggling to incorporate the token into a sign-in method that requires a password.
The code snippet provided in their documentation is as follows:
supabase.auth.signInWithPassword({
email,
password,
});
I urgently need assistance with this issue!
Even after thoroughly reading their documentation and seeking help in their community, I have been unable to find a solution.