Ionic React v5.5.4 - input type file within a label will not open in Android (API 29)

Hi,

The following works fine in the web browser and in IOS (i.e. clicking on the label opens the file input), but will not work on Android.

<IonButton>
  <label htmlFor='fileInput'>
    Upload
    <input
      type='file'
      id='fileInput'
      hidden
      ...
    />
  </label>
</IonButton>

Any ideas why?