From 5257a24181df3fa160571a5d04c1e52b3f3ec8b5 Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Thu, 28 Aug 2025 13:10:08 +0700 Subject: [PATCH] chore: fix status --- web-app/src/containers/ModelSupportStatus.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-app/src/containers/ModelSupportStatus.tsx b/web-app/src/containers/ModelSupportStatus.tsx index 43827f58e..770d126f8 100644 --- a/web-app/src/containers/ModelSupportStatus.tsx +++ b/web-app/src/containers/ModelSupportStatus.tsx @@ -24,7 +24,7 @@ export const ModelSupportStatus = ({ className, }: ModelSupportStatusProps) => { const [modelSupportStatus, setModelSupportStatus] = useState< - 'RED' | 'YELLOW' | 'GREEN' | 'LOADING' | null + 'RED' | 'YELLOW' | 'GREEN' | 'LOADING' | null | 'GREY' >(null) // Helper function to check model support with proper path resolution @@ -32,7 +32,7 @@ export const ModelSupportStatus = ({ async ( id: string, ctxSize: number - ): Promise<'RED' | 'YELLOW' | 'GREEN' | null> => { + ): Promise<'RED' | 'YELLOW' | 'GREEN' | 'GREY' | null> => { try { const janDataFolder = await getJanDataFolderPath()