From 1eb7ff512ef48da6911238bb85cc29acc0a26414 Mon Sep 17 00:00:00 2001 From: Red Adaya Date: Mon, 29 Apr 2024 15:03:28 +0800 Subject: [PATCH] cleanup --- src/app/sidebar/aichat.tsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/app/sidebar/aichat.tsx b/src/app/sidebar/aichat.tsx index 42eab6b1f..cd4f82c75 100644 --- a/src/app/sidebar/aichat.tsx +++ b/src/app/sidebar/aichat.tsx @@ -236,29 +236,19 @@ class AIChat extends React.Component<{}, {}> { const chitem: OpenAICmdInfoChatMessageType = null; const renderKeybindings = GlobalModel.inputModel.shouldRenderAuxViewKeybindings(appconst.InputAuxView_AIChat); return ( - // GlobalModel.inputModel.closeAuxView()} - // iconClass="fa-sharp fa-solid fa-sparkles" - // >
- {/* */} - {/* */}
Wave AI
- {/*
*/}
{this.renderChatMessage(chitem)}
- {/*
*/}
@@ -269,8 +259,6 @@ class AIChat extends React.Component<{}, {}> { autoCorrect="off" autoFocus={true} id="chat-cmd-input" - // onFocus={this.onTextAreaFocused.bind(this)} - // onBlur={this.onTextAreaBlur.bind(this)} onChange={this.onTextAreaChange.bind(this)} onKeyDown={this.onKeyDown} style={{ fontSize: this.termFontSize }} @@ -279,7 +267,6 @@ class AIChat extends React.Component<{}, {}> { >
- //
); } }