Erro closing IonMenu

Hello, I have a phone (SAMSUNG Galaxy A30 with Android 9.0) to which the IonMenu works perfectly, this app I made already has a public and only 2 of all users can not close the menu, for example an Asus X00BD with Androi 5.x,
this is my menu =>

                <IonMenu contentId="main" type="overlay" swipeGesture={true}>
                  <IonContent>
                    <IonList>
                      <IonMenuToggle key={Math.random()} auto-hide="false">
                        {
                          this.OptionsMenu()
                        }
                      </IonMenuToggle>
                    </IonList>
                  </IonContent>
                </IonMenu>

this.OptionsMenu() is that =>

      return (
        <>
          <IonItem href="/Red">
            <IonIcon slot="start" icon={contacts} />
            <IonLabel>Red Social</IonLabel>
          </IonItem>
          {this.__views()}
        </>
      );

someone have idea for solved this problem?, i’m using React+ Ionic