You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const calculateTotalWorth = () => {
// ***********************************************************************
// CHANGE LATER: Right now the prices are just the first four rows of the
// fair_market_value table, thus if the table has less than four tables
// this function will break
// ***********************************************************************
return donationData['canned_dog_food_quantity'] && priceData.length > 0
? donationData['canned_dog_food_quantity'] * priceData[0]['price'] +
donationData['dry_dog_food_quantity'] * priceData[1]['price'] +
donationData['canned_cat_food_quantity'] * priceData[2]['price'] +
donationData['dry_cat_food_quantity'] * priceData[3]['price']
: 0;
};
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: