Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/order-history/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export async function getOrders(page = 1, pageSize = 20) {
let callCC = false;
if (data.count > 0) {
callCC = data.results[0].enable_hoist_order_history;
console.log('REV-2577 LOG: ecommerce data.results', data.results);
}
console.log('REV-2577 LOG: enable_hoist_order_history flag is: ', callCC);

Expand All @@ -52,8 +53,7 @@ export async function getOrders(page = 1, pageSize = 20) {
},
});
data = newData.data;
console.log('REV-2577 LOG: CC data.data.results', newData.data.results);
console.log('REV-2577 LOG: ecommerce data.results', data.results);
console.log('REV-2577 LOG: CC data.data.results', data.results);
}
// [END] TEMPORARY CODE for rollout testing/confirmation===========

Expand Down