Skip to content

Commit cfce8d2

Browse files
committed
Fix prettier formatting
1 parent b762239 commit cfce8d2

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

src/components/Context1MCheckbox.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ export const Context1MCheckbox: React.FC<Context1MCheckboxProps> = ({ modelStrin
2727
1M Context
2828
</label>
2929
<TooltipWrapper inline>
30-
<span className="flex cursor-help items-center text-[10px] leading-none text-gray-500">?</span>
30+
<span className="flex cursor-help items-center text-[10px] leading-none text-gray-500">
31+
?
32+
</span>
3133
<Tooltip className="tooltip" align="center" width="auto">
3234
Enable 1M token context window (beta feature for Claude Sonnet 4/4.5)
3335
</Tooltip>

src/components/Messages/AssistantMessage.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,7 @@ export const AssistantMessage: React.FC<AssistantMessageProps> = ({
9090
// Empty streaming state
9191
if (isStreaming && !content) {
9292
return (
93-
<div className="font-primary text-[13px] text-gray-600 italic">
94-
Waiting for response...
95-
</div>
93+
<div className="font-primary text-[13px] text-gray-600 italic">Waiting for response...</div>
9694
);
9795
}
9896

src/components/RightSidebar/ConsumerBreakdown.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ const ConsumerBreakdownComponent: React.FC<ConsumerBreakdownProps> = ({ consumer
1616
}
1717

1818
if (consumers.consumers.length === 0) {
19-
return <div className="text-gray-200-dim py-3 text-left italic">No consumer data available</div>;
19+
return (
20+
<div className="text-gray-200-dim py-3 text-left italic">No consumer data available</div>
21+
);
2022
}
2123

2224
return (

src/components/SecretsModal.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ const SecretsModal: React.FC<SecretsModalProps> = ({
140140

141141
<div className="mb-4 min-h-[200px] flex-1 overflow-y-auto">
142142
{secrets.length === 0 ? (
143-
<div className="px-4 py-8 text-center text-[13px] text-gray-500">No secrets configured</div>
143+
<div className="px-4 py-8 text-center text-[13px] text-gray-500">
144+
No secrets configured
145+
</div>
144146
) : (
145147
<div className="grid grid-cols-[1fr_1fr_auto_auto] items-end gap-1 [&>label]:mb-0.5 [&>label]:text-[11px] [&>label]:text-gray-500">
146148
<label>Key</label>

src/components/ui/button.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ const buttonVariants = cva(
1212
destructive: "bg-error text-white shadow-sm hover:bg-error/90",
1313
outline:
1414
"border border-input-border bg-transparent shadow-sm hover:bg-gray-800 hover:text-button-text",
15-
secondary:
16-
"bg-gray-950-secondary text-gray-200 shadow-sm hover:bg-gray-950-secondary/80",
15+
secondary: "bg-gray-950-secondary text-gray-200 shadow-sm hover:bg-gray-950-secondary/80",
1716
ghost: "hover:bg-gray-800 hover:text-button-text",
1817
link: "text-plan-mode underline-offset-4 hover:underline",
1918
},

0 commit comments

Comments
 (0)