Get rid of duplicate system text

This commit is contained in:
2025-06-14 18:25:33 +02:00
parent 16012accc1
commit 031b139657

View File

@@ -148,22 +148,6 @@ const SystemTracker = ({ system }: SystemTrackerProps) => {
Refresh
</Button>
</CardHeader>
<CardContent>
<div className="flex items-center justify-between">
<div>
{signaturesLoading ? (
<div className="text-slate-400">Loading system...</div>
) : system ? (
<div className="text-2xl font-bold text-white">{system}</div>
) : (
<div className="text-slate-400">No system data</div>
)}
</div>
<Badge variant="outline" className="bg-slate-700 text-slate-200 border-slate-600">
{signatures.length} Signatures
</Badge>
</div>
</CardContent>
</Card>
{/* Error Display */}