diff --git a/planner/configexport/internal/field_types.go b/planner/configexport/internal/field_types.go index eec05d9..e8a7e02 100644 --- a/planner/configexport/internal/field_types.go +++ b/planner/configexport/internal/field_types.go @@ -185,8 +185,6 @@ func withUintType(fieldValue string) any { value, _ := strconv.Atoi(fieldValue) if value < 0 { return uint(0) - } else if value > math.MaxUint { - return uint(math.MaxUint) } return uint(value) }