Skip to content

Commit

Permalink
Got rid of post image placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
liamlizard committed Dec 7, 2024
1 parent d6a6265 commit 5bdd913
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions project/app/(tabs)/Profile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,6 @@ export default function Profile() {
</Pressable>
</View>
</BlurView>

<View style={styles.postGrid}>
{imageUrls.map((url, index) => (
<Image key={index} source={{ uri: url }} style={styles.postImage} />
))}
</View>
</ScrollView>
</LinearGradient>
</SafeAreaView>
Expand Down
1 change: 0 additions & 1 deletion project/app/(tabs)/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5bdd913

Please # to comment.