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
When doing more than n consequent authentication it can be seen that at the n-th authentication call token endpoint n time where the first n-1 fails and have in them the codeVerifier of the previous authentications, e.g.
The fix caf4bd0 seems good but was part of a fix tabbar branch in a draft PR that was closed without being merged... and never part of the actual codebase!
Maybe you want to cherrypick the commit and open PR just to fix this issue.
When doing more than
![image](https://private-user-images.githubusercontent.com/102997993/370671910-da0e2d3a-27a0-459c-8afe-779b1527e6bd.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2NzkzNjUsIm5iZiI6MTczOTY3OTA2NSwicGF0aCI6Ii8xMDI5OTc5OTMvMzcwNjcxOTEwLWRhMGUyZDNhLTI3YTAtNDU5Yy04YWZlLTc3OWIxNTI3ZTZiZC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjE2JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxNlQwNDExMDVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1iMDU2MzQ1N2IwNDBiYWU3ZmY3NDcwM2ZlYzJlZTQ4YTRhZGFkOWMyZGQ4ZWEzODNmNDE2MGE1ZmE2ZTQxM2VjJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.guKt9VxhM-SjHEji8gU3VvJTFTioHzbd3PjnfklxYAE)
n
consequent authentication it can be seen that at the n-th authentication call token endpointn
time where the firstn-1
fails and have in them the codeVerifier of the previous authentications, e.g.Looking at the code it seems to me that here
wallet/src/routes/[[lang]]/(protected)/credential-offer/+page.svelte
Lines 28 to 41 in 08560a3
eventListeners are added, but then never removed and this causes the multiple call on each authentication,
The text was updated successfully, but these errors were encountered: