diff --git a/frontend/src/app/workspace/chats/[thread_id]/page.tsx b/frontend/src/app/workspace/chats/[thread_id]/page.tsx
index c3d2697c..e7bc36cf 100644
--- a/frontend/src/app/workspace/chats/[thread_id]/page.tsx
+++ b/frontend/src/app/workspace/chats/[thread_id]/page.tsx
@@ -549,7 +549,7 @@ export default function ChatPage() {
{/* MARK: 开发测试:iframe 通信功能测试面板 */}
-
+ {/* */}
);
diff --git a/frontend/src/lib/utils.ts b/frontend/src/lib/utils.ts
index 991b94bf..36369100 100644
--- a/frontend/src/lib/utils.ts
+++ b/frontend/src/lib/utils.ts
@@ -19,7 +19,7 @@ export async function copyToClipboard(text: string): Promise {
const isInIframe = window.self !== window.top;
const message = {
type: "copyToClipboard",
- data: text,
+ text,
};
if (isInIframe && window.parent) {