Skip to content

Commit

Permalink
add missing param
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardoj committed Mar 15, 2024
1 parent 4e599b2 commit 9e0d5b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libs/actions/Plaid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ import ONYXKEYS from '@src/ONYXKEYS';
*/
function openPlaidBankLogin(allowDebit: boolean, bankAccountID: number) {
// redirect_uri needs to be in kebab case convention because that's how it's passed to the backend
const {redirectURI} = getPlaidLinkTokenParameters();
const {redirectURI, androidPackage} = getPlaidLinkTokenParameters();

const params: OpenPlaidBankLoginParams = {
redirectURI,
androidPackage,
allowDebit,
bankAccountID,
};
Expand Down

0 comments on commit 9e0d5b9

Please sign in to comment.