chore: fix typos in comment-out (#1540)

Co-authored-by: Scott Densmore <scottdensmore@mac.com>
This commit is contained in:
Noritaka Kobayashi
2025-06-26 13:34:53 +09:00
committed by GitHub
parent b8ae12a109
commit dbe217828d
8 changed files with 8 additions and 8 deletions

View File

@@ -133,7 +133,7 @@ export function ThemeDialog({
let showScopeSelection = true;
let includePadding = true;
// Remove content from the LHS that can be ommitted if it exceeds the available height.
// Remove content from the LHS that can be omitted if it exceeds the available height.
if (totalLeftHandSideHeight > availableTerminalHeight) {
includePadding = false;
totalLeftHandSideHeight -= DAILOG_PADDING;

View File

@@ -47,7 +47,7 @@ export const ToolMessage: React.FC<ToolMessageProps> = ({
)
: undefined;
// Long tool call response in MarkdownDisplay doesn't repect availableTerminalHeight properly,
// Long tool call response in MarkdownDisplay doesn't respect availableTerminalHeight properly,
// we're forcing it to not render as markdown when the response is too long, it will fallback
// to render as plain text, which is contained within the terminal using MaxSizedBox
if (availableHeight) {