From 4929ae6c1dcf3c4470a3e9f3cc8c4a859977aa77 Mon Sep 17 00:00:00 2001 From: damian0815 Date: Tue, 1 Nov 2022 13:56:03 +0100 Subject: [PATCH] shorter strings --- frontend/src/app/constants.ts | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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' } ];