Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorVilas committed Jan 17, 2023
1 parent b078a53 commit 3f894ad
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/modules/todoHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ export const todoHandler = (() => {

function darkMode(isActive){
localStorage.dark = JSON.stringify(isActive);
console.log(localStorage.dark);
}

function isOnDarkMode(){
Expand Down
2 changes: 0 additions & 2 deletions src/modules/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -963,8 +963,6 @@ export const ui = (() => {
projectsContainer.classList.add("projects-container");

resume.forEach(project => {
console.log(project);

const card = document.createElement("div");
card.classList.add("card", "main-page-card");

Expand Down

0 comments on commit 3f894ad

Please sign in to comment.