feat: Re-Enable LaMa Infill

This commit is contained in:
blessedcoolant 2023-09-01 09:13:28 +12:00
parent a74e2108bb
commit 0d3d880323

View File

@ -27,9 +27,7 @@ const ParamInfillMethod = () => {
const { data: appConfigData, isLoading } = useGetAppConfigQuery();
const infill_methods = appConfigData?.infill_methods.filter(
(method) => method !== 'lama'
);
const infill_methods = appConfigData?.infill_methods;
const { t } = useTranslation();