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