Update src/app/dashboard/page.tsx

This commit is contained in:
2026-03-09 09:44:49 +00:00
parent 2d74026a47
commit df276b58cb

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: