modif badge statut formations

This commit is contained in:
corenthin-lebreton 2025-12-02 20:57:38 +01:00
parent 4cff540ef7
commit 09cc1633cc

View File

@ -134,11 +134,11 @@ function StatusBadge({ status }: { status?: string }) {
const STATUS_CONFIG: Record<string, { label: string; className: string }> = {
queued: {
label: 'En file',
label: 'En cours',
className: 'bg-amber-400/10 text-amber-200 border border-amber-400/40',
},
processing: {
label: 'Déploiement',
label: 'En cours',
className: 'bg-blue-400/10 text-blue-200 border border-blue-400/40',
},
completed: {
@ -150,7 +150,7 @@ const STATUS_CONFIG: Record<string, { label: string; className: string }> = {
className: 'bg-red-500/10 text-red-300 border border-red-400/40',
},
unknown: {
label: 'Inconnu',
label: 'En cours',
className: 'bg-white/10 text-white/70 border border-white/20',
},
}