Skip to content

Commit 68f790c

Browse files
committed
Merge origin/main into implement-undo-slash-command
2 parents 057e353 + eaea074 commit 68f790c

11 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/tests/messageView.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import {
66
renderMessageToStdout,
77
getUpdatePlanPreviewLines,
88
parseToolPayload,
9-
} from "../ui/compoments/MessageView/utils";
9+
} from "../ui/components/MessageView/utils";
1010
import { RawMode } from "../ui/contexts";
1111
import type { SessionMessage } from "../session";
12-
import type { ToolSummary } from "../ui/compoments/MessageView/types";
12+
import type { ToolSummary } from "../ui/components/MessageView/types";
1313

1414
test("parseDiffPreview removes headers and classifies lines", () => {
1515
const lines = parseDiffPreview(

src/ui/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
resolveSettingsSources,
2525
} from "../settings";
2626
import { PromptInput, type PromptDraft, type PromptSubmission } from "./PromptInput";
27-
import { MessageView, RawModeExitPrompt } from "./compoments";
27+
import { MessageView, RawModeExitPrompt } from "./components";
2828
import { SessionList } from "./SessionList";
2929
import { UndoSelector, type UndoRestoreMode } from "./UndoSelector";
3030
import { buildLoadingText } from "./loadingText";
@@ -40,7 +40,7 @@ import {
4040
} from "./askUserQuestion";
4141
import { buildExitSummaryText } from "./exitSummary";
4242
import { RawMode, useRawModeContext } from "./contexts";
43-
import { renderMessageToStdout } from "./compoments/MessageView/utils";
43+
import { renderMessageToStdout } from "./components/MessageView/utils";
4444

4545
const DEFAULT_MODEL = "deepseek-v4-pro";
4646
const DEFAULT_BASE_URL = "https://api.deepseek.com";

src/ui/PromptInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import { useHiddenTerminalCursor, useTerminalExtendedKeys, useTerminalFocusRepor
5151
import SlashCommandMenu from "./SlashCommandMenu";
5252
import type { ModelConfigSelection, ReasoningEffort } from "../settings";
5353
import DropdownMenu from "./DropdownMenu";
54-
import { RawModelDropdown } from "./compoments";
54+
import { RawModelDropdown } from "./components";
5555

5656
export type PromptSubmission = {
5757
text: string;
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)