From 5bdd913bbf905e3c5d05b5f1a2b977386036205a Mon Sep 17 00:00:00 2001 From: liamlizard <82777456+liamlizard@users.noreply.github.com> Date: Fri, 6 Dec 2024 23:16:44 -0800 Subject: [PATCH] Got rid of post image placeholders --- project/app/(tabs)/Profile/index.tsx | 6 ------ project/app/(tabs)/Search.tsx | 1 - 2 files changed, 7 deletions(-) diff --git a/project/app/(tabs)/Profile/index.tsx b/project/app/(tabs)/Profile/index.tsx index c98e1f4..204ddeb 100644 --- a/project/app/(tabs)/Profile/index.tsx +++ b/project/app/(tabs)/Profile/index.tsx @@ -135,12 +135,6 @@ export default function Profile() { - - - {imageUrls.map((url, index) => ( - - ))} - diff --git a/project/app/(tabs)/Search.tsx b/project/app/(tabs)/Search.tsx index d81619a..924f488 100644 --- a/project/app/(tabs)/Search.tsx +++ b/project/app/(tabs)/Search.tsx @@ -57,7 +57,6 @@ const Search = () => { const profilePromises = userIds.map(async (userBasic) => { const profile = await getUserProfile(userBasic.userId); - console.log(profile?.profilePicture) if (profile && (userBasic.userId !== currentUserId)) { userProfiles.push({ userId: userBasic.userId,