diff --git a/frontend/app/(app)/(tabs)/review/index.js b/frontend/app/(app)/(tabs)/review/index.js index 7c89165..8fdbd56 100644 --- a/frontend/app/(app)/(tabs)/review/index.js +++ b/frontend/app/(app)/(tabs)/review/index.js @@ -38,6 +38,8 @@ export default function Tab() { "Why not?", "Excellent!", ]; + const opt2 = ["Yes", "No"]; + const sourness = ["Good", "Bad"]; return ( @@ -47,10 +49,12 @@ export default function Tab() { keyExtractor={(item) => String(item._id)} renderItem={({ item }) => ( - Name: {item.name} - Brand: {item.brand} - Degree: {item.degree} - Packaging: {item.packaging} + Foam → {opt3[item.foam - 1]} + Bitter / Sweetness → {opt3[item.bitter_sweetness - 1]} + Taste → {opt5[item.taste - 1]} + Packaging → {opt5[item.packaging - 1]} + Sourness → {sourness[item.sourness - 1]} + Would again? → {opt2[item.would_again - 1]} )} />