session' does not exist in twoFactor

client.twoFactor
.verifyTotp({
code: totpCode,
})
.then((res) => {
if (res.data?.session) {
setSuccess(true);
setError('');
} else {
setError('Invalid TOTP code');
}
});
client.twoFactor
.verifyTotp({
code: totpCode,
})
.then((res) => {
if (res.data?.session) {
setSuccess(true);
setError('');
} else {
setError('Invalid TOTP code');
}
});
Type error: Property 'session' does not exist on type '{ token: string; }'.
3 Replies
bekacru
bekacru4mo ago
yeah since 1.1 only token is returned
yasserconnect
yasserconnectOP4mo ago
thanks, i check nextjs demo repo but it looks not updated yet.
bekacru
bekacru4mo ago
yeah it should be updated

Did you find this page helpful?