Fix: Update notification badge label to 'Waiting payment'

This commit is contained in:
Andymick
2026-07-19 07:55:14 +01:00
parent a1c463fb49
commit 560e172880
+1 -1
View File
@@ -47,7 +47,7 @@ export default function AdminNotificationsBadge({
<p className="font-bold text-ink">Notifications</p>
{pendingOrders > 0 && (
<div className="flex items-center justify-between py-2 px-3 bg-surface rounded">
<span className="text-muted">Pending orders</span>
<span className="text-muted">Waiting payment</span>
<span className="font-bold text-splash-orange">{pendingOrders}</span>
</div>
)}