dev #1

Merged
nalalangan merged 7 commits from dev into main 2026-01-02 15:12:31 -10:00
Showing only changes of commit 8894cf21ea - Show all commits

View File

@ -56,7 +56,9 @@ export default function GroceryListItem({ item, onClick, onImageAdded, onLongPre
}; };
const handleItemClick = () => { const handleItemClick = () => {
setShowConfirmBuyModal(true); if (onClick) {
setShowConfirmBuyModal(true);
}
}; };
const handleConfirmBuy = (quantity) => { const handleConfirmBuy = (quantity) => {