Skip to content

Commit

Permalink
fix: remove useless console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Pipazoul committed Dec 15, 2023
1 parent b77e23f commit 4a42c60
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,9 @@
function checkIfAllUnchecked(categories: Category) {
let checked = false;
console.log(categories);
categories.sub_categorie_items.forEach((subCat) => {
if (subCat) {
console.log('subCat');
console.log(subCat);
if (subCat.checked) {
console.log('checked');
checked = true;
}
}
Expand Down

0 comments on commit 4a42c60

Please sign in to comment.