fix(web): update request headers key

This commit is contained in:
zhaoying
2026-02-09 20:21:01 +08:00
parent 936fb8b8a1
commit 55174dc707

View File

@@ -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 || ''}`,
} }}
/>
)