Skip to content

Commit

Permalink
clear console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloalba committed Jul 21, 2023
1 parent 3194da4 commit b5c28ca
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions editor/js/trotamundos.js
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,6 @@ async function download() {
const response = await fetch("/data/trotamundos.json");
const data = await response.json();
tripsList = Object.assign(tripsList, data);
console.log(tripsList);
localStorage.tripsList = JSON.stringify(tripsList);
clearCache();
hideLoader();
Expand Down Expand Up @@ -1026,7 +1025,6 @@ function reloadPreviewSections(sections) {

function toSpanishDate(date1, date2) {
var dateParts = date1.split("-");
console.log(date1, date2);

const day1 = parseInt(dateParts[2]);
const month1 = months[parseInt(dateParts[1])]
Expand Down

0 comments on commit b5c28ca

Please sign in to comment.