Skip to content

Commit aba6970

Browse files
committed
🤖 Apply prettier formatting
1 parent 559f8e2 commit aba6970

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

src/components/ChatInput.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -749,10 +749,7 @@ export const ChatInput: React.FC<ChatInputProps> = ({
749749
)}
750750
<div className="flex flex-wrap items-center justify-between">
751751
{/* Model Selector - always visible */}
752-
<div
753-
className="flex items-center"
754-
data-component="ModelSelectorGroup"
755-
>
752+
<div className="flex items-center" data-component="ModelSelectorGroup">
756753
<ModelSelector
757754
ref={modelSelectorRef}
758755
value={preferredModel}
@@ -789,10 +786,7 @@ export const ChatInput: React.FC<ChatInputProps> = ({
789786
</div>
790787

791788
{/* Context 1M Checkbox - hide on smaller viewports */}
792-
<div
793-
className="max-@[500px]:hidden flex items-center"
794-
data-component="Context1MGroup"
795-
>
789+
<div className="max-@[500px]:hidden flex items-center" data-component="Context1MGroup">
796790
<Context1MCheckbox modelString={preferredModel} />
797791
</div>
798792
<div className="max-@[700px]:hidden flex items-center gap-1.5">

src/components/ThinkingSlider.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ export const ThinkingSliderComponent: React.FC<ThinkingControlProps> = ({ modelS
162162
{thinkingLevel}
163163
</span>
164164
</div>
165-
<Tooltip align="center">Thinking: {formatKeybind(KEYBINDS.TOGGLE_THINKING)} to toggle</Tooltip>
165+
<Tooltip align="center">
166+
Thinking: {formatKeybind(KEYBINDS.TOGGLE_THINKING)} to toggle
167+
</Tooltip>
166168
</TooltipWrapper>
167169
);
168170
};

0 commit comments

Comments
 (0)