chore: make border radius consistent and remove unused functions

This commit is contained in:
2025-09-04 14:19:52 -03:00
parent 7e0e484790
commit fa4a380b9a
2 changed files with 4 additions and 17 deletions
-13
View File
@@ -1240,17 +1240,4 @@ function createDayElement(day: number, isOtherMonth: boolean, year: number, mont
return dayElement;
}
function toggleCard(id: string) {
const card = document.querySelector(`[data-id="${id}"]`);
card?.classList.toggle('expanded');
}
function deleteFood(id: string) {
handleDeleteFood(id);
}
function editFood(id: string) {
alert(`Edit functionality for food item ${id} would be implemented here`);
}
(window as any).selectFood = selectFood;