diff --git a/frontend/src/app/constants.ts b/frontend/src/app/constants.ts index bd457dc7fb..ece22c2201 100644 --- a/frontend/src/app/constants.ts +++ b/frontend/src/app/constants.ts @@ -40,11 +40,8 @@ export const NUMPY_RAND_MAX = 4294967295; export const FACETOOL_TYPES = ['gfpgan', 'codeformer'] as const; -export const IN_PROGRESS_IMAGE_TYPES: Array<{ - key: string; - value: InProgressImageType; -}> = [ - { key: 'None', value: 'none' }, - { key: 'Fast', value: 'latents' }, - { key: 'Accurate', value: 'full-res' }, +export const IN_PROGRESS_IMAGE_TYPES: Array<{ key: string; value: string }> = [ + { key: "None", value: 'none'}, + { key: "Fast", value: 'latents' }, + { key: "Accurate", value: 'full-res' } ];