export const isLtField = (fieldName, fieldLabel) => {
  return ({value, siblings, getter}) => {
    return compareWithOtherField(value, fieldName, fieldLabel, siblings, getter, lt, Errors.isLtField)
  }
}