Update src/app/dashboard/page.tsx

This commit is contained in:
2026-03-09 09:46:22 +00:00
parent 147ffdfef1
commit b75da11448

View File

@@ -53,7 +53,7 @@ function getStatusColor(status: string): string {
case 'Delivered':
return 'text-green-600';
case 'In Transit':
return 'text-blue-600':
return 'text-blue-600';
case 'Processing':
return 'text-yellow-600';
default:
@@ -66,7 +66,7 @@ function getStatusBgColor(status: string): string {
case 'Delivered':
return 'bg-green-100';
case 'In Transit':
return 'bg-blue-100':
return 'bg-blue-100';
case 'Processing':
return 'bg-yellow-100';
default: