chenbhao commited on
Commit
672c348
·
1 Parent(s): 50b01e4

fix: /model ui

Browse files
src/components/SearchableModelPicker.tsx CHANGED
@@ -273,24 +273,9 @@ export function SearchableModelPicker({
273
  emptyMessage="No models match your search"
274
  matchLabel={matchLabel}
275
  selectAction="select"
276
- extraHints={
277
- isStandaloneCommand && (
278
- <>
279
- {fastModeNotice && (
280
- <>
281
- <Text dimColor> · </Text>
282
- {fastModeNotice}
283
- </>
284
- )}
285
- </>
286
- )
287
- }
288
  />
289
  )
290
 
291
- if (!isStandaloneCommand) {
292
- return content
293
- }
294
-
295
- return <Pane color="permission">{content}</Pane>
296
  }
 
273
  emptyMessage="No models match your search"
274
  matchLabel={matchLabel}
275
  selectAction="select"
276
+ extraHints={fastModeNotice}
 
 
 
 
 
 
 
 
 
 
 
277
  />
278
  )
279
 
280
+ return content
 
 
 
 
281
  }