From 7cf9d27129e5d231ad5c18966336764f732fe1fe Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 4 Oct 2025 21:15:15 +0000 Subject: [PATCH] Mark GOD Mode in profile cards cgen-256333bb07e543b1971f069e551ec2f3 --- client/pages/ProfilesDirectory.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/client/pages/ProfilesDirectory.tsx b/client/pages/ProfilesDirectory.tsx index 9ebb8528..c3cf551c 100644 --- a/client/pages/ProfilesDirectory.tsx +++ b/client/pages/ProfilesDirectory.tsx @@ -48,13 +48,21 @@ interface ProfileCardProps { const ProfileCard = ({ profile }: ProfileCardProps) => { const realmStyle = realmBadgeStyles[profile.user_type] || "bg-aethex-500 text-white"; + const isGodMode = (profile.level ?? 1) >= 100; return ( -
- - {profile.user_type.replace("_", " ")} - +
+
+ + {profile.user_type.replace("_", " ")} + + {isGodMode && ( + + GOD Mode + + )} +