Skip to content

Commit 5db4121

Browse files
committed
refactor(web): remove supported platforms display from streamer stats component
1 parent 97b9c9a commit 5db4121

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

apps/web/src/components/molecules/streamer-stats.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ function StreamerStatsClient() {
3131
const totalStreamers = data?.streamers.length || 0;
3232
const liveStreamers = data?.streamers.filter((s) => s.isLive).length || 0;
3333
const viewers = data?.streamers.reduce((acc, s) => acc + s.viewerCount, 0) || 0;
34-
const supportedPlatforms = 2; // Twitch and Kick
3534

3635
if (error) {
3736
// Fallback to static numbers if API fails
@@ -73,10 +72,6 @@ function StreamerStatsClient() {
7372
</div>
7473
<div className="text-muted-foreground">Live Viewers</div>
7574
</div>
76-
<div className="space-y-2">
77-
<div className="text-4xl font-bold text-accent">{supportedPlatforms}</div>
78-
<div className="text-muted-foreground">Platforms Supported</div>
79-
</div>
8075
</div>
8176
);
8277
}

0 commit comments

Comments
 (0)