Skip to content

Commit

Permalink
Added Favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
adityakkpk committed May 13, 2024
1 parent 7364c14 commit e8b1954
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions checkout.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<link rel="stylesheet" href="styles/shared/general.css">
<link rel="stylesheet" href="styles/pages/checkout/checkout-header.css">
<link rel="stylesheet" href="styles/pages/checkout/checkout.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="checkout-header js-checkout-header">
Expand Down
1 change: 1 addition & 0 deletions orders.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<link rel="stylesheet" href="styles/shared/general.css">
<link rel="stylesheet" href="styles/shared/amazon-header.css">
<link rel="stylesheet" href="styles/pages/orders.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="amazon-header">
Expand Down
2 changes: 1 addition & 1 deletion scripts/Checkout/orderSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function renderOrederSummary() {

const matchingProduct = getProduct(productId);

const deliveryOptionId = cartItem.deliverOptionId;
const deliveryOptionId = cartItem.deliveryOptionId;

let deliveryOption = getDeliveryOption(deliveryOptionId);

Expand Down
2 changes: 1 addition & 1 deletion scripts/Checkout/paymentSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function renderPaymentSummary () {

productPriceCents += product.priceCents * cartItem.quantity;

const deliveryOption = getDeliveryOption(cartItem.deliverOptionId);
const deliveryOption = getDeliveryOption(cartItem.deliveryOptionId);

shippingPriceCents += deliveryOption.priceCents;

Expand Down
1 change: 1 addition & 0 deletions tracking.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<link rel="stylesheet" href="styles/shared/general.css">
<link rel="stylesheet" href="styles/shared/amazon-header.css">
<link rel="stylesheet" href="styles/pages/tracking.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="amazon-header">
Expand Down

0 comments on commit e8b1954

Please sign in to comment.