Super specific double tap issue

Hi, I know that my issue is super specific to my system and probably no one has ever had this issue but may be you can guide me to find the issue :

I use the Lovelace interface on my iPhone X on iOS 13 Beta 2 ( I have the issue in both app and web app ) When I toggle a button, it toggle twice…

here some more info :

  • I can’t tell if I had this issue before installing iOS beta

  • it work great on my computer

  • This is the code of one of my button :

    - type: custom:card-modder
      card:  
          type: "entity-button"
          entity: light.cuisine
          icon: 'mdi:silverware-fork-knife'
          name: Cuisine
          long_press_action: 'more_info'
          color: rgb(0, 225, 255)
          color_off: rgb( 200, 200, 200)
    
      style:
        border-radius: 5px
        border: 'solid 1px rgba(255,255,255,1)'
        box-shadow: '3px 3px rgba(0,0,0,0.4)' 
    

Another button :

  - type: custom:card-modder
    card:  
        type: "custom:button-card"
        entity: input_boolean.night_mode
        icon: 'mdi:weather-night'
        name: Nuit
        hold_action: 'more_info'
        color: rgb(0, 225, 255)
        color_off: rgb( 200, 200, 200)

    style:
      border-radius: 5px
      border: 'solid 1px rgba(255,255,255,1)'
      box-shadow: '3px 3px rgba(0,0,0,0.4)'