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
First of all thanks for this great product and react library!
I've set-up my project to work pretty much like the oauth example here.
The flow works pretty good, however, in my app I need to allow the user to select additional bank accounts.
This means that after connecting an OAuth bank, the user might try to connect another bank.
However, any additional tries to open plaid leads to the previous "update" mode flow.
This seems to be happening because the useEffect inside the usePlaidLink hook doesn't add the receivedRedirectUri prop to its dependency array.
I can create a PR to fix this if needed, unless this was intentional.
My current workaround is to remove my linkToken, and then add it back after an animation frame.
ie:
Hey
First of all thanks for this great product and react library!
I've set-up my project to work pretty much like the oauth example here.
The flow works pretty good, however, in my app I need to allow the user to select additional bank accounts.
This means that after connecting an OAuth bank, the user might try to connect another bank.
However, any additional tries to open plaid leads to the previous "update" mode flow.
This seems to be happening because the
useEffect
inside theusePlaidLink
hook doesn't add thereceivedRedirectUri
prop to its dependency array.I can create a PR to fix this if needed, unless this was intentional.
My current workaround is to remove my
linkToken
, and then add it back after an animation frame.ie:
Thanks in advance!
The text was updated successfully, but these errors were encountered: