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?