mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat(ui): hide lama infill
This commit is contained in:
parent
40e6dd8464
commit
7f6fdf5d39
@ -27,7 +27,9 @@ const ParamInfillMethod = () => {
|
|||||||
|
|
||||||
const { data: appConfigData, isLoading } = useGetAppConfigQuery();
|
const { data: appConfigData, isLoading } = useGetAppConfigQuery();
|
||||||
|
|
||||||
const infill_methods = appConfigData?.infill_methods;
|
const infill_methods = appConfigData?.infill_methods.filter(
|
||||||
|
(method) => method !== 'lama'
|
||||||
|
);
|
||||||
|
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user