I am trying to create a simple eCommerce website with HTML, CSS, and JavaScript. When a user adds an item to their cart I add that item to local storage and I want when the user goes to their cart, all the items in local storage are read and then displayed to the cart. Whenever I try to append I get this. Instead of displaying the HTML it displays a string of all the HTML?

function getCartItems() {
  var items = JSON.parse(localStorage.getItem("cartItems"));
  console.log({ items });
  for (let i = 0; i < items.length; i++) {
    console.log(items[i]);
    var cartRow = document.createElement("div");
    // cartRow.classList.add("cart-row");
    var cartItems = document.getElementsByClassName("cart-items")[0];
    var cartRowContents = ` <li class="list-group-item d-flex flex-column">
      <div class="row">
      <div class="col col-lg-4">
      <img
      src="${items[i].image}"
      alt="${items[i].name}"
      class="d-block mx-auto"
      />
      </div>
      <div class="col col-lg-2 text-center">
      <h5 class="mt-4 flex-wrap">${items[i].name}</h5>
      <p>Size: 10.5</p>
      <h2><span class="badge badge-danger">$189.99</span></h2>
      </div>
      <div class="col mt-4 text-center">
      <p class="font-weight-bold">Quantity</p>
      <input type="number" value="1" class="pl-2 w-50 rounded cart-quantity" />
      <button
      class="btn border border-none mx-5 mt-3 mt-lg-0 remove-item"
      >
      <i class="far fa-trash-alt"> </i>
      </button>
      </div>
      </div>
      </li>`;
    cartRow.innerText = cartRowContents;
    cartItems.append(cartRow);
  }
}
Here is the code for my HTML
 <!-- Cart -->
    <div class="card m-5 border border-none mw-50">
      <div class="card-header text-center text-white bg-primary">
        Your Order
      </div>
      <ul class="list-group list-group-flush cart-items">
        <li class="list-group-item d-flex flex-column">
          <div class="row">
            <div class="col col-lg-4">
              <img
                src="./images/products/air-max-270.jpg"
                alt="Air Max 270"
                class="d-block mx-auto"
              />
            </div>
            <div class="col col-lg-2 text-center">
              <h5 class="mt-4 flex-wrap">Nike Air Max 270</h5>
              <p>Size: 10.5</p>
              <h2><span class="badge badge-danger">$189.99</span></h2>
            </div>
            <div class="col mt-4 text-center">
              <p class="font-weight-bold">Quantity</p>
              <input type="number" value="1" class="pl-2 w-50 rounded cart-quantity" />
              <button
                class="btn border border-none mx-5 mt-3 mt-lg-0 remove-item"
              >
                <i class="far fa-trash-alt"> </i>
              </button>
            </div>
          </div>
        </li>
       </ul>