-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove SD prefilling #106
Remove SD prefilling #106
Conversation
Post Odyssey, the statement descriptor is prefilled automatically for anything. So no need to prefill ourselves, as it might be wrong!
? { | ||
settings: { | ||
card_payments: { | ||
statement_descriptor_prefix: 'FurEver', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
technically, this shouldn't be what we use for a connected account - this is the name of the platform, but not the name of the connected account.
@@ -286,18 +286,6 @@ app.post('/create-account', userRequired, async (req, res) => { | |||
: {}), | |||
}, | |||
business_type: businessType, | |||
...(shouldPrefill |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested this to verify it isn't actually required for our prefill option to get charges and transfers
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ty!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Post Odyssey, the statement descriptor is prefilled automatically for anything. So no need to prefill ourselves, as it might be wrong!