Skip to content

Commit b37effe

Browse files
Set model and provider selector to collapsed by default
1 parent 1bfbb4c commit b37effe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/components/chat/BaseChat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
125125
const TEXTAREA_MAX_HEIGHT = chatStarted ? 400 : 200;
126126
const [apiKeys, setApiKeys] = useState<Record<string, string>>(getApiKeysFromCookies());
127127
const [modelList, setModelList] = useState<ModelInfo[]>([]);
128-
const [isModelSettingsCollapsed, setIsModelSettingsCollapsed] = useState(false);
128+
const [isModelSettingsCollapsed, setIsModelSettingsCollapsed] = useState(true);
129129
const [isListening, setIsListening] = useState(false);
130130
const [recognition, setRecognition] = useState<SpeechRecognition | null>(null);
131131
const [transcript, setTranscript] = useState('');

0 commit comments

Comments
 (0)