From 7ea774f35bb4e3af44cc82884aba565bcbfcf29a Mon Sep 17 00:00:00 2001 From: Weves Date: Wed, 29 Nov 2023 20:49:25 -0800 Subject: [PATCH] Change in-progress status color --- web/src/components/Status.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/web/src/components/Status.tsx b/web/src/components/Status.tsx index d1bea74ee..82e2fe2c7 100644 --- a/web/src/components/Status.tsx +++ b/web/src/components/Status.tsx @@ -49,7 +49,7 @@ export function IndexAttemptStatus({ ); } else if (status === "in_progress") { badge = ( - + In Progress ); @@ -59,12 +59,6 @@ export function IndexAttemptStatus({ Scheduled ); - } else { - badge = ( - - Initializing - - ); } // TODO: remove wrapping `dark` once we have light/dark mode