diff --git a/app/routes/play/looking.tsx b/app/routes/play/looking.tsx index 19d3ba48b..85315f019 100644 --- a/app/routes/play/looking.tsx +++ b/app/routes/play/looking.tsx @@ -331,6 +331,17 @@ export default function LookingPage() { } const lookingForMatch = data.ownGroup.members?.length === LFG_GROUP_FULL_SIZE; + + const columns = [ + { type: "LIKES_GIVEN", groups: data.likedGroups, title: "Liked" }, + { type: "NEUTRAL", groups: data.neutralGroups, title: "Neutral" }, + { + type: "LIKES_RECEIVED", + groups: data.likerGroups, + title: "Likes received", + }, + ] as const; + return (