IonActionSheet in Ionic-React version 6 not works

I have an App whit Ionic react version 6 and I try to use this element (I took that from ionic docs) :

      <IonSelect placeholder="Select fruit" interface="action-sheet">
        <IonSelectOption value="apples">Apples</IonSelectOption>
        <IonSelectOption value="oranges">Oranges</IonSelectOption>
        <IonSelectOption value="bananas">Bananas</IonSelectOption>
      </IonSelect>

The problem happens only if the interface of the is “action-sheet”. I have parsed the DOM and clicking on the input shows no action-sheet. With popover and alert as interface it works.

Whit the browser works but not whit the mobile.
The menu stay closed!!

Someone knows why?