Sometimes we need to add a limitation to what the user is inputting into a redux-form Field. For example, in a license plate lookup, we want all the letters to be uppercase regardless of whether the user types them in caps, or when taking a user’s name, we may want the format to be capitalized.
How to dynamically pass options to customSelect from register form Field?
The values aren't capitalized in the UI result. Also why not just use String.toUpperCase() versus installing another npm package.
My bad. It capitalizes the first letter. Missed that.