-
Notifications
You must be signed in to change notification settings - Fork 1
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
[CHK-7187] Fix Apple Pay Race Condition #171
base: CHK-4297
Are you sure you want to change the base?
Conversation
9d3b2f3
to
4641465
Compare
@@ -24,6 +24,7 @@ define([ | |||
response = JSON.parse(response); | |||
window.checkoutConfig.quoteData.entity_id = response.quoteId; | |||
window.checkoutConfig.quoteItemData = response.quoteItemData; | |||
return; |
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.
Is this statement necessary? No additional logic runs after the try/catch
block.
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.
its possible its not necessary, I added it to have an explicit return just for promise resolution. I'll look into removing it in the cleanup task I've got out
4b4b915
to
4e7611f
Compare
8bdacc2
to
a6c146f
Compare
Added logic to sequentialize on update and fix shipping address not set issue for Apple Pay.
Fixes CHK-7187