Skip to content

Commit 48dd22b

Browse files
committed
fixup
1 parent 7cf2edd commit 48dd22b

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

src/browser/components/ChatInput/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,6 @@ export const ChatInput: React.FC<ChatInputProps> = (props) => {
861861
hints.push(`${formatKeybind(interruptKeybind)} to interrupt`);
862862
}
863863
hints.push(`${formatKeybind(KEYBINDS.SEND_MESSAGE)} to ${canInterrupt ? "queue" : "send"}`);
864-
hints.push(`${formatKeybind(KEYBINDS.SEND_MESSAGE)} to send`);
865864
hints.push(`${formatKeybind(KEYBINDS.OPEN_MODEL_SELECTOR)} to change model`);
866865
hints.push(`/vim to toggle Vim mode (${vimEnabled ? "on" : "off"})`);
867866

src/browser/components/Messages/QueuedMessage.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ export const QueuedMessage: React.FC<QueuedMessageProps> = ({ message, className
1515

1616
const buttons: ButtonConfig[] = onEdit
1717
? [
18-
{
19-
label: "Edit",
20-
onClick: onEdit,
21-
icon: <Pencil />,
22-
},
18+
{
19+
label: "Edit",
20+
onClick: onEdit,
21+
icon: <Pencil />,
22+
},
2323
]
2424
: [];
2525

src/node/services/agentSession.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import type {
1414
WorkspaceChatMessage,
1515
StreamErrorMessage,
1616
SendMessageOptions,
17+
ImagePart,
1718
} from "@/common/types/ipc";
1819
import type { SendMessageError } from "@/common/types/errors";
1920
import { createUnknownSendMessageError } from "@/node/services/utils/sendMessageError";
@@ -23,11 +24,6 @@ import { enforceThinkingPolicy } from "@/browser/utils/thinking/policy";
2324
import { createRuntime } from "@/node/runtime/runtimeFactory";
2425
import { MessageQueue } from "./messageQueue";
2526

26-
interface ImagePart {
27-
url: string;
28-
mediaType: string;
29-
}
30-
3127
export interface AgentSessionChatEvent {
3228
workspaceId: string;
3329
message: WorkspaceChatMessage;

0 commit comments

Comments
 (0)