diff --git a/frontend/src/pages/Bestellungen.tsx b/frontend/src/pages/Bestellungen.tsx
index 3d8dbb4..6cf5329 100644
--- a/frontend/src/pages/Bestellungen.tsx
+++ b/frontend/src/pages/Bestellungen.tsx
@@ -4,8 +4,6 @@ import {
AccordionSummary,
AccordionDetails,
Box,
- Card,
- CardContent,
IconButton,
Tab,
Tabs,
@@ -267,12 +265,10 @@ export default function Bestellungen() {
{ label: 'Lieferung prüfen', count: orders.filter(o => o.status === 'lieferung_pruefen').length, color: 'secondary.main' },
{ label: 'Gesamt', count: orders.length, color: 'text.primary' },
].map(({ label, count, color }) => (
-
-
- {count}
- {label}
-
-
+
+ {count}
+ {label}
+
))}