File tree Expand file tree Collapse file tree 5 files changed +11
-8
lines changed Expand file tree Collapse file tree 5 files changed +11
-8
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 } ,
You can’t perform that action at this time.
0 commit comments