Hi team, I've just tried to follow one of the basi...
# support-questions-legacy
a
Hi team, I've just tried to follow one of the basic examples in your guides, using the
supertokesn-web-js
SDK, but it's failing when I call the social login with error: "No instance of Multitenancy found." I am not using multitenancy, nor do I need it. How should I address this issue? The code used is just as per your examples:
Copy code
//Get auth URL
    const authUrl = await getThirdPartyAuthorisationURLWithQueryParamsAndSetState({
      thirdPartyId,

      // This is where Google should redirect the user back after login or error.
      // This URL goes on the Google's dashboard as well.
      frontendRedirectURI: `${cfg.app.baseUrl}/auth/callback/${thirdPartyId}`,
    })

    //Redirect
    window.location.assign(authUrl)
Thank you 🙏
2 Views