Change in-progress status color

This commit is contained in:
Weves
2023-11-29 20:49:25 -08:00
committed by Chris Weaver
parent d1846823ba
commit 7ea774f35b

View File

@ -49,7 +49,7 @@ export function IndexAttemptStatus({
); );
} else if (status === "in_progress") { } else if (status === "in_progress") {
badge = ( badge = (
<Badge size={size} color="fuchsia" icon={FiClock}> <Badge size={size} color="amber" icon={FiClock}>
In Progress In Progress
</Badge> </Badge>
); );
@ -59,12 +59,6 @@ export function IndexAttemptStatus({
Scheduled Scheduled
</Badge> </Badge>
); );
} else {
badge = (
<Badge size={size} color="yellow" icon={FiClock}>
Initializing
</Badge>
);
} }
// TODO: remove wrapping `dark` once we have light/dark mode // TODO: remove wrapping `dark` once we have light/dark mode