-
Notifications
You must be signed in to change notification settings - Fork 26
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
feat: moonpay payment screens and flow #2548
Conversation
Pull Request Test Coverage Report for Build 18901
💛 - Coveralls |
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.
LGTM
src/common/moonpay/auth.js
Outdated
@@ -474,7 +481,8 @@ const submitKycDocumentsOperation = ops => () => async (dispatch, getState) => { | |||
await dispatch(ops.setKYCSubmitted(true)); | |||
} catch (error) { | |||
log.error(error); | |||
await dispatch(ops.setKycError(error.message)); | |||
// await dispatch(ops.setKycError(error.response.body.message)); |
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.
Can't we remove this line?
const currencies = useSelector(moonPaySelectors.getSupportedFiat); | ||
const currencyCode = config.dev ? 'ETH' : 'KEY'; | ||
|
||
// console.log('quote', quote); |
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.
Seems like we can remove these consoles as well
No description provided.