Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/views/microdeposits/RoutingNumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const RoutingNumber = (props) => {
})

// If reason is IAV_PREFERRED, load institutions to prepare for user choice.
if (resp.blocked_routing_number.reason_name === BLOCKED_REASONS.IAV_PREFERRED) {
if (resp.blocked_routing_number.reason === BLOCKED_REASONS.IAV_PREFERRED) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we have plans to fix the tests for this?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also do we have plans to write an e2e test that would have caught the bug that customers found?

const loadedInstitutions$ = defer(() =>
api.loadInstitutions({
routing_number: values.routingNumber,
Expand Down
Loading