From 7219f6e55a64a366ebfe8eef986591d7a3588788 Mon Sep 17 00:00:00 2001 From: aliang <1098486429@qq.com> Date: Mon, 30 Sep 2024 20:50:41 +0800 Subject: [PATCH] fix(u): correct error message for expeired thread (#3224) --- ee/tabby-ui/components/chat/chat.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/tabby-ui/components/chat/chat.tsx b/ee/tabby-ui/components/chat/chat.tsx index 213a2663563..7007205cd4b 100644 --- a/ee/tabby-ui/components/chat/chat.tsx +++ b/ee/tabby-ui/components/chat/chat.tsx @@ -511,7 +511,7 @@ function formatThreadRunErrorMessage(error: ExtendedCombinedError | undefined) { if ( some(error.graphQLErrors, o => o.extensions?.code === ERROR_CODE_NOT_FOUND) ) { - return `The thread has expired, please click ${"'"}clear${"'"} and then retry.` + return `The thread has expired, please click ${"'"}Clear${"'"} and try again.` } return error.message || 'Failed to fetch'