Skip to content

Commit

Permalink
fix: remmoved useless console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Pipazoul committed Dec 15, 2023
1 parent 5bdafa0 commit b062227
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,9 @@
}
async function checkUncheckAll(index: number) {
console.log(index)
console.log(displayedCategories)
const spliced = displayedCategories.filter((cat, catIndex) => {
if (catIndex === index) {
console.log(cat)
cat.sub_categorie_items.forEach((subCat) => {
if(subCat){
subCat.checked = !subCat.checked;
Expand Down

0 comments on commit b062227

Please sign in to comment.