Skip to content

Commit

Permalink
remove useless console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
levalleux-ludo committed Oct 20, 2023
1 parent 180903b commit 1148531
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/components/widgets/redeem/Redeem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export function Redeem() {
for (const key of Object.keys(deliveryInfoDecoded)) {
deliveryInfoDecoded[key] = decodeURIComponent(deliveryInfoDecoded[key]);
}
console.log("deliveryInfoDecoded", deliveryInfoDecoded);
} catch (e) {
console.error(
`Unable to parse JSON from deliveryInfo='${deliveryInfo}': ${e}`
Expand All @@ -46,10 +45,6 @@ export function Redeem() {
if (postDeliveryInfoHeaders) {
try {
postDeliveryInfoHeadersDecoded = JSON.parse(postDeliveryInfoHeaders);
console.log(
"postDeliveryInfoHeadersDecoded",
postDeliveryInfoHeadersDecoded
);
} catch (e) {
console.error(
`Unable to parse JSON from postDeliveryInfoHeaders='${postDeliveryInfoHeaders}': ${e}`
Expand All @@ -66,10 +61,6 @@ export function Redeem() {
postRedemptionSubmittedHeadersDecoded = JSON.parse(
postRedemptionSubmittedHeaders
);
console.log(
"postRedemptionSubmittedHeadersDecoded",
postRedemptionSubmittedHeadersDecoded
);
} catch (e) {
console.error(
`Unable to parse JSON from postRedemptionSubmittedHeaders='${postRedemptionSubmittedHeaders}': ${e}`
Expand All @@ -86,10 +77,6 @@ export function Redeem() {
postRedemptionConfirmedHeadersDecoded = JSON.parse(
postRedemptionConfirmedHeaders
);
console.log(
"postRedemptionConfirmedHeadersDecoded",
postRedemptionConfirmedHeadersDecoded
);
} catch (e) {
console.error(
`Unable to parse JSON from postRedemptionConfirmedHeaders='${postRedemptionConfirmedHeaders}': ${e}`
Expand Down

0 comments on commit 1148531

Please sign in to comment.