From 55174dc707d83758f9f2c183e1f63f711044746f Mon Sep 17 00:00:00 2001 From: zhaoying Date: Mon, 9 Feb 2026 20:21:01 +0800 Subject: [PATCH] fix(web): update request headers key --- web/src/views/Conversation/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/views/Conversation/index.tsx b/web/src/views/Conversation/index.tsx index 89043a20..fcc32bf8 100644 --- a/web/src/views/Conversation/index.tsx +++ b/web/src/views/Conversation/index.tsx @@ -2,7 +2,7 @@ * @Author: ZhaoYing * @Date: 2026-02-03 16:58:03 * @Last Modified by: ZhaoYing - * @Last Modified time: 2026-02-09 16:37:49 + * @Last Modified time: 2026-02-09 20:20:01 */ /** * Conversation Page @@ -358,7 +358,7 @@ const Conversation: FC = () => { requestConfig={{ headers: { 'Content-Type': 'multipart/form-data', - authorization: `Bearer ${shareToken || ''}`, + Authorization: `Bearer ${shareToken || ''}`, } }} /> )