diff --git a/src/components/UserProfileCard.js b/src/components/UserProfileCard.js
index 717a242904ae972fb98cada12a253cf82ce7aff7..38aae9d5eaea1412055f396d05895d19ac65fdd9 100644
--- a/src/components/UserProfileCard.js
+++ b/src/components/UserProfileCard.js
@@ -6,11 +6,9 @@ const UserProfileCard = ({ user }) => {
   return (
     <Link to={`/profile/${user._id}`} className="user-profile-link">
       <div className="user-profile-card">
-        <img src={user.profilePicture || '/default-avatar.png'} alt={user.name} className="user-profile-image" />
         <h3>{user.name}</h3>
-        <p>{user.email}</p>
-        <p>In-game Username: {user.inGameUsername}</p>
-        <p>Server: {user.server}</p>
+        <p><strong>In-game Username: </strong>{user.inGameUsername}</p>
+        <p><strong>Server: </strong>{user.server}</p>
       </div>
     </Link>
   );