shorter strings

This commit is contained in:
damian0815 2022-11-01 13:56:03 +01:00 committed by Lincoln Stein
parent 5a2790a69b
commit dff5681cf0

View File

@ -40,6 +40,6 @@ export const FACETOOL_TYPES = ['gfpgan', 'codeformer'] as const;
export const IN_PROGRESS_IMAGE_TYPES: Array<{ key: string; value: string }> = [ export const IN_PROGRESS_IMAGE_TYPES: Array<{ key: string; value: string }> = [
{ key: "None", value: 'none'}, { key: "None", value: 'none'},
{ key: "Full-res (slow)", value: 'full-res' }, { key: "Fast", value: 'latents' },
{ key: "Latents (fast)", value: 'latents' } { key: "Accurate", value: 'full-res' }
]; ];