Fix product stock, booking actions, settings, reservation UX, nav and category filter

This commit is contained in:
belviskhoremk
2026-05-20 23:56:43 +00:00
parent a89793a059
commit affff1c502
12 changed files with 137 additions and 102 deletions

View File

@@ -110,7 +110,7 @@ export default function AdminClients() {
) : (
customers.map((c) => (
<TableRow key={c.id}>
<TableCell className="font-medium">{c.full_name ?? "—"}</TableCell>
<TableCell className="font-medium">{c.full_name || "—"}</TableCell>
<TableCell className="text-sm text-muted-foreground">{c.email}</TableCell>
<TableCell className="text-sm text-muted-foreground">{c.phone ?? "—"}</TableCell>
<TableCell className="text-center text-sm">{c.orders_count}</TableCell>