await fetch()

in app/static/utilities.js [23:33]


    await fetch(addToCartURL, {
      method: "POST",
      mode: "same-origin",
      cache: "no-cache",
      headers: {
          "Content-Type": "application/x-www-form-urlencoded",
      },
      redirect: "error",
      referrer: "no-referrer",
      body: `id=${id}`
    })