Browse Source

Remove logging.

Lee Morgan 6 months ago
parent
commit
41c2fd254c
1 changed files with 0 additions and 1 deletions
  1. 0 1
      index.js

+ 0 - 1
index.js

@@ -42,7 +42,6 @@ const getWeather = ()=>{
     })
     })
         .then(r=>r.json())
         .then(r=>r.json())
         .then((response)=>{
         .then((response)=>{
-            console.log(response);
             const tempDisplay = `${response.current.temp_f}\u00B0F`;
             const tempDisplay = `${response.current.temp_f}\u00B0F`;
             document.getElementById("temp").textContent = tempDisplay;
             document.getElementById("temp").textContent = tempDisplay;