diff --git a/packages/web/src/components/ProfileSidebar.tsx b/packages/web/src/components/ProfileSidebar.tsx index f03d6d1c..9f6efeee 100644 --- a/packages/web/src/components/ProfileSidebar.tsx +++ b/packages/web/src/components/ProfileSidebar.tsx @@ -18,7 +18,6 @@ interface ProfileSidebarProps { export function ProfileSidebar({ user, isLive, viewerCount, children }: ProfileSidebarProps) { const displayName = user.name || user.username - const avatarUrl = user.image || `https://api.dicebear.com/7.x/initials/svg?seed=${user.username}` return (
@@ -26,18 +25,24 @@ export function ProfileSidebar({ user, isLive, viewerCount, children }: ProfileS
{/* Avatar and Live Badge */}
-
- {displayName} - {isLive && ( - - Live - - )} -
+ {user.image ? ( +
+ {displayName} + {isLive && ( + + Live + + )} +
+ ) : isLive ? ( +
+
+
+ ) : null}

{displayName}

@{user.username}