Skip to content

Commit 1c1a72f

Browse files
feat(ui): hide sdxl from linear UI
1 parent 99383c2 commit 1c1a72f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/frontend/web/src/features/parameters/components/Parameters/MainModel/ParamMainModelSelect.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const ParamMainModelSelect = () => {
3636
const data: SelectItem[] = [];
3737

3838
forEach(mainModels.entities, (model, id) => {
39-
if (!model) {
39+
if (!model || ['sdxl', 'sdxl-refiner'].includes(model.base_model)) {
4040
return;
4141
}
4242

0 commit comments

Comments
 (0)