Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit 1cd09da

Browse files
authored
fix: update order history console log statements (#184)
1 parent 47c06a3 commit 1cd09da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/order-history/service.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export async function getOrders(page = 1, pageSize = 20) {
3939
let callCC = false;
4040
if (data.count > 0) {
4141
callCC = data.results[0].enable_hoist_order_history;
42+
console.log('REV-2577 LOG: ecommerce data.results', data.results);
4243
}
4344
console.log('REV-2577 LOG: enable_hoist_order_history flag is: ', callCC);
4445

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

0 commit comments

Comments
 (0)