Skip to content

Commit bc576df

Browse files
committed
Merge branch 'fix-main' of github.com:GenerateNU/platemate into fix-main
2 parents 916d6da + 1c51ec9 commit bc576df

File tree

2 files changed

+1
-177
lines changed

2 files changed

+1
-177
lines changed

frontend/app/(tabs)/index/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default function Feed() {
9595
// use the recommendations endpoint to get the top 10 items
9696
const topItems = await getRecommendations(user?.id);
9797
// convert top items _id to id
98-
topItems.forEach((item) => (item.id = item._id));
98+
topItems.forEach((item) => (item.id = item.id));
9999
console.log(topItems);
100100
setFeedItems(topItems.map((item) => ({ id: item.id, type: "menuItem", data: item })));
101101
break;

frontend/components/UserProfile.tsx

Lines changed: 0 additions & 176 deletions
This file was deleted.

0 commit comments

Comments
 (0)