erichosick
03/20/2024, 5:11 PMconst body = superTokensEvent.body = JSON.parse(superTokensEvent.body);
result = await Passwordless.signInUp({ email: body.email });
to
const body = superTokensEvent.body = JSON.parse(superTokensEvent.body);
result = await Passwordless.signInUp({ email: body.email, tenantId: body.tenant });
but get an error:
Tenant with the following connectionURIDomain, appId and tenantId combination not found: (dev-{our_id}-us-east-1.aws.supertokens.io, public, qloo)
Any thoughts as this worked with v14.*