diff --git a/invokeai/frontend/src/common/util/parameterTranslation.ts b/invokeai/frontend/src/common/util/parameterTranslation.ts index 26ed125ae8..95be5a8717 100644 --- a/invokeai/frontend/src/common/util/parameterTranslation.ts +++ b/invokeai/frontend/src/common/util/parameterTranslation.ts @@ -176,9 +176,6 @@ export const frontendToBackendParameters = ( let esrganParameters: false | BackendEsrGanParameters = false; let facetoolParameters: false | BackendFacetoolParameters = false; - // Multiplying it by 10000 so the Slider can have values between 0 and 1 which makes more sense - generationParameters.threshold = threshold * 1000; - generationParameters.h_symmetry_time_pct = Math.max( 0, Math.min(1, horizontalSymmetryTimePercentage / steps) diff --git a/invokeai/frontend/src/features/parameters/components/AdvancedParameters/Seed/Threshold.tsx b/invokeai/frontend/src/features/parameters/components/AdvancedParameters/Seed/Threshold.tsx index e1e1d6d0d9..fa7fc6ea88 100644 --- a/invokeai/frontend/src/features/parameters/components/AdvancedParameters/Seed/Threshold.tsx +++ b/invokeai/frontend/src/features/parameters/components/AdvancedParameters/Seed/Threshold.tsx @@ -15,8 +15,8 @@ export default function Threshold() { dispatch(setThreshold(v))} handleReset={() => dispatch(setThreshold(0))} value={threshold}