You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If these are missing, the sign-in URL was manually opened without these params or the `sendVerificationRequest` method did not send the link correctly in the email.
206
-
if(!paramToken||!paramIdentifier){
205
+
// If token is missing, the sign-in URL was manually opened without this param or the `sendVerificationRequest` method did not send the link correctly in the email.
206
+
if(!paramToken){
207
207
return{redirect: `${url}/error?error=configuration`, cookies }
208
208
}
209
209
210
210
// @ts-expect-error -- Verified in `assertConfig`. adapter: Adapter<true>
211
211
constinvite=awaitadapter.useVerificationToken({
212
+
// @ts-expect-error User-land adapters might decide to omit the identifier during lookup
0 commit comments