-
Notifications
You must be signed in to change notification settings - Fork 2
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
CET-468/feat: Updated logic for displaying order intent response #50
base: main
Are you sure you want to change the base?
CET-468/feat: Updated logic for displaying order intent response #50
Conversation
@@ -380,6 +373,18 @@ define([ | |||
contentType: 'application/json', | |||
headers: {}, | |||
data: JSON.stringify(orderIntentRequestBody) | |||
}) | |||
.done((response) => { |
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.
Indentation looks off
With this PR, lets create some screenshots and check with the product/design team if the proposed behaviour is desirable. |
.done((response) => { | ||
this.orderIntentResponse(response); | ||
if (response.approved) { | ||
this.orderIntentMessage(config.orderIntentApprovedMessage); |
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.
Where are we displaying the orderIntentMessage?
self.processOrderIntentSuccessResponse(response); | ||
}) | ||
.fail(function (response) { | ||
self.processOrderIntentErrorResponse(response); |
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.
Does this mean we can remove processOrderIntentErrorResponse function?
Updated Logic for order intent response