chore: biome checks

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-10-15 14:38:26 -07:00
parent 70b547c9c9
commit 3022b25541
5 changed files with 142 additions and 132 deletions

View file

@ -334,9 +334,13 @@ ResearchModeSelector.displayName = "ResearchModeSelector";
const LLMSelector = React.memo(() => {
const { search_space_id } = useParams();
const searchSpaceId = Number(search_space_id);
const { llmConfigs, loading: llmLoading, error } = useLLMConfigs(searchSpaceId);
const { preferences, updatePreferences, loading: preferencesLoading } = useLLMPreferences(searchSpaceId);
const {
preferences,
updatePreferences,
loading: preferencesLoading,
} = useLLMPreferences(searchSpaceId);
const isLoading = llmLoading || preferencesLoading;