Skip to content

Commit 3811b8c

Browse files
committed
Fix Prettier formatting
1 parent 43abdb4 commit 3811b8c

File tree

5 files changed

+5
-15
lines changed

5 files changed

+5
-15
lines changed

src/components/CommandSuggestions.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,7 @@ export const CommandSuggestions: React.FC<CommandSuggestionsProps> = ({
108108
index === selectedIndex ? "bg-accent-darker" : "bg-transparent"
109109
)}
110110
>
111-
<div className="text-accent font-monospace shrink-0 text-xs">
112-
{suggestion.display}
113-
</div>
111+
<div className="text-accent font-monospace shrink-0 text-xs">{suggestion.display}</div>
114112
<div className="text-medium truncate text-right text-[11px]">
115113
{suggestion.description}
116114
</div>

src/components/TodoList.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,7 @@ export const TodoList: React.FC<TodoListProps> = ({ todos }) => {
117117
color: "var(--color-text)",
118118
}}
119119
>
120-
<div className="mt-px shrink-0 text-xs opacity-80">
121-
{getStatusIcon(todo.status)}
122-
</div>
120+
<div className="mt-px shrink-0 text-xs opacity-80">{getStatusIcon(todo.status)}</div>
123121
<div className="min-w-0 flex-1">
124122
<div
125123
className={cn(

src/components/tools/BashToolCall.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,7 @@ export const BashToolCall: React.FC<BashToolCallProps> = ({
6767
<span>🔧</span>
6868
<Tooltip>bash</Tooltip>
6969
</TooltipWrapper>
70-
<span className="text-text font-monospace max-w-[400px] truncate">
71-
{args.script}
72-
</span>
70+
<span className="text-text font-monospace max-w-[400px] truncate">{args.script}</span>
7371
<span
7472
className="ml-2 text-[10px] whitespace-nowrap [@container(max-width:500px)]:hidden"
7573
style={{

src/components/tools/FileEditToolCall.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,7 @@ export const FileEditToolCall: React.FC<FileEditToolCallProps> = ({
143143
<span>✏️</span>
144144
<Tooltip>{toolName}</Tooltip>
145145
</TooltipWrapper>
146-
<span className="text-text font-monospace max-w-[400px] truncate">
147-
{filePath}
148-
</span>
146+
<span className="text-text font-monospace max-w-[400px] truncate">{filePath}</span>
149147
</div>
150148
{!(result && result.success && result.diff) && (
151149
<StatusIndicator status={status}>{getStatusDisplay(status)}</StatusIndicator>

src/components/tools/FileReadToolCall.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ export const FileReadToolCall: React.FC<FileReadToolCallProps> = ({
8282
<span>📖</span>
8383
<Tooltip>file_read</Tooltip>
8484
</TooltipWrapper>
85-
<span className="text-text font-monospace max-w-[400px] truncate">
86-
{filePath}
87-
</span>
85+
<span className="text-text font-monospace max-w-[400px] truncate">{filePath}</span>
8886
{result && result.success && parsedContent && (
8987
<span className="text-secondary ml-2 text-[10px]">
9088
read {formatBytes(parsedContent.actualBytes)} of {formatBytes(result.file_size)}

0 commit comments

Comments
 (0)