Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
luz-ojeda authored Apr 10, 2024
1 parent e624359 commit 837f185
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/routes/admin/crear-receta/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
function removeIngredient(ingredient: string) {
ingredients = ingredients.filter((i) => i !== ingredient);
}
$: console.log(form?.data?.name);
</script>

<div class="spacing">
Expand All @@ -26,7 +25,6 @@
loading = true;

return async ({ result }) => {
console.debug(result);
await applyAction(result);
loading = false;
};
Expand Down

0 comments on commit 837f185

Please sign in to comment.