diff --git a/apps/web/src/components/condition-picker.tsx b/apps/web/src/components/condition-picker.tsx index d0ebe24..e57cf7d 100644 --- a/apps/web/src/components/condition-picker.tsx +++ b/apps/web/src/components/condition-picker.tsx @@ -162,20 +162,35 @@ export function ConditionPicker({ {editing.value} - + {(() => { + const atMax = + def.maxValue !== undefined && + editing.value >= def.maxValue; + return ( + + ); + })()}