feat: Remove Discord status display from activity feed
All checks were successful
Dev Deployment (Zero Downtime) / deploy-dev (push) Successful in 13m6s

- 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
This commit is contained in:
2026-01-09 17:42:05 +01:00
parent d09802ab19
commit 9c24fdf5bd

View File

@@ -1540,37 +1540,6 @@ export default function ActivityFeed() {
</p>
</div>
)}
{/* Status Footer */}
<div className="pt-3 border-t border-white/10 flex items-center justify-between">
<div className="flex items-center gap-2">
<div
className={`w-2 h-2 rounded-full ${
data.status.color === "green"
? "bg-green-500"
: data.status.color === "red"
? "bg-red-500"
: data.status.color === "yellow"
? "bg-yellow-500"
: "bg-gray-500"
}`}
/>
<span className="text-[11px] font-medium text-white/50 capitalize">
{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}
</span>
</div>
<span className="text-[10px] text-white/30">
Updates every 30s
</span>
</div>
</div>
</motion.div>
)}