We bumped supertokens-node version to 16.7.4 from ...
# support-questions-legacy
e
We bumped supertokens-node version to 16.7.4 from 14.* and updated the following code from:
Copy code
const body = superTokensEvent.body = JSON.parse(superTokensEvent.body);
result = await Passwordless.signInUp({ email: body.email });
to
Copy code
const body = superTokensEvent.body = JSON.parse(superTokensEvent.body);
result = await Passwordless.signInUp({ email: body.email, tenantId: body.tenant });
but get an error:
Copy code
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.*
2 Views