formatting changes from linting

This commit is contained in:
Caleb Sawyer 2026-02-05 14:14:39 -06:00
parent 40388cf8dd
commit 89ee8644a2
1 changed files with 7 additions and 5 deletions

View File

@ -47,11 +47,13 @@
upToMessageId
}: Props = $props();
let options = $derived(modelOptions().filter((option) => {
// Exclude models that are marked as not for webui use
const modelProps = modelsStore.getModelProps(option.model);
return modelProps?.webui !== false;
}));
let options = $derived(
modelOptions().filter((option) => {
// Exclude models that are marked as not for webui use
const modelProps = modelsStore.getModelProps(option.model);
return modelProps?.webui !== false;
})
);
let loading = $derived(modelsLoading());
let updating = $derived(modelsUpdating());
let activeId = $derived(selectedModelId());