diff --git a/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildFLUXGraph.ts b/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildFLUXGraph.ts index 33b0958e49..897b8e2c14 100644 --- a/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildFLUXGraph.ts +++ b/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildFLUXGraph.ts @@ -84,13 +84,10 @@ export const buildFLUXGraph = async ( // translations. assert(generationMode === 'inpaint' || generationMode === 'outpaint', t('toast.fluxFillIncompatibleWithT2IAndI2I')); - // FLUX Fill wants much higher guidance values than normal FLUX - silently "fix" the value for the user if it is - // way too low. + // FLUX Fill wants much higher guidance values than normal FLUX - silently "fix" the value for the user. // TODO(psyche): Figure out a way to alert the user that this is happening - maybe return warnings from the graph // builder and toast them? - if (guidance < 25) { - guidance = 30; - } + guidance = 30; } const { positivePrompt } = getPresetModifiedPrompts(state);