From b5c28ca2847756cb85e90c73c7d49e8f9f09a221 Mon Sep 17 00:00:00 2001 From: Pablo Alba Date: Fri, 21 Jul 2023 12:21:57 +0200 Subject: [PATCH] clear console logs --- editor/js/trotamundos.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/editor/js/trotamundos.js b/editor/js/trotamundos.js index 5088dc1..836717d 100644 --- a/editor/js/trotamundos.js +++ b/editor/js/trotamundos.js @@ -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(); @@ -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])]