-
Notifications
You must be signed in to change notification settings - Fork 22
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
fix: #231 fix change password flow #265
Conversation
@@ -33,6 +31,8 @@ jest.mock('../../core/router', () => ({ | |||
}, | |||
})) | |||
|
|||
const { MARKETPLACE_COGNITO_CLIENT_ID = '' } = process.env |
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.
2 things,
- The value is
COGNITO_CLIENT_ID_MARKETPLACE
so this will not work - Deconstructing process.env object is fine locally but breaks in prod. Can you just reference
process.env.COGNITO_CLIENT_ID_MARKETPLACE
please
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.
I've updated new changes
Replace the string 'coggnitoClientId' with the actual env in saga
1fe9594
to
91e40e6
Compare
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.
Thanks 👍
Replace the string 'coggnitoClientId' with the actual env in saga
* [CLD-689] fix modal initial state * [CLD-689] update chaining fallback
Replace the string 'coggnitoClientId' with the actual env in saga
fixes #231
Replace the string 'coggnitoClientId' with the actual env in saga
Edit actions taken after password are reset