From 9c24fdf5bd86cc9b223548c1a2c9716933a7aac9 Mon Sep 17 00:00:00 2001
From: denshooter
Date: Fri, 9 Jan 2026 17:42:05 +0100
Subject: [PATCH] feat: Remove Discord status display from activity feed
- Remove status footer section that displayed Discord status
- Status information (online/offline/dnd/away) is no longer shown
- Activity feed now only shows coding, gaming, and music activities
---
app/components/ActivityFeed.tsx | 31 -------------------------------
1 file changed, 31 deletions(-)
diff --git a/app/components/ActivityFeed.tsx b/app/components/ActivityFeed.tsx
index c30339b..e1824e9 100644
--- a/app/components/ActivityFeed.tsx
+++ b/app/components/ActivityFeed.tsx
@@ -1540,37 +1540,6 @@ export default function ActivityFeed() {
)}
-
- {/* Status Footer */}
-
-
-
-
- {data.status.text === "dnd"
- ? "Nicht stören"
- : data.status.text === "online"
- ? "Online"
- : data.status.text === "offline"
- ? "Offline"
- : data.status.text === "away"
- ? "Abwesend"
- : data.status.text}
-
-
-
- Updates every 30s
-
-
)}