adamreisnz
01/03/2024, 9:24 PMsupertokesn-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:
//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 🙏