Verify Micro Deposit drop-in, escaping

It looks like there is some sort of encoding issue in the title of the verify micro deposit drop-in, the end result is a funky display for the end-user.

I am using Angular, my code, nothing fancy going on:

@Component({
  selector: 'app-micro-deposits',
  template: `
          ...
          <dwolla-micro-deposits-verify customerId="{{data.achCommerceId}}"
                                        fundingSourceId="{{data.fundingSource.id}}"></dwolla-micro-deposits-verify>
  `,
  styleUrls: ['./micro-deposits.component.scss']
})
dwolla.configure({
      environment,
      styles: "/assets/dwolla-styles.css",
      token: (req) => Promise.resolve(this.dwollaAPIToken(req))
});

Any thoughts?

This encoded string got into the dwolla-web.js I was including. I fixed it there, issue resolved.

1 Like

Glad you got is resolved! Thanks for the update, @David_Marginian.