Social sign-in doesn't work

const res = await authClient.signIn.social({
  provider: "google",
  fetchOptions: {
    headers: {
      "x-captcha-response": token,
    },
    onSuccess: () => {
      router.push("/home");
    }
  },
});


can someone explain why am i not getting the popup for google signin? nothing will happen on the click, any help appreicated, thanks!
Solution
hmm. could it be your db connection?
Was this page helpful?