I believe I am experiencing a bug, but I am wondering if there is something I am doing wrong.
I have an app prototype that opens a donation bottom sheet as an overlay. On that overlay, I have input chips to quick-select a donation amount. On those input chips, I have the interactions set to on tap - set variable DonationAmt to a specified string then change to a variant I created with that input chip selected.
I put the set variable step first otherwise there is a small delay in that variable populating into a text field due to the smart animation on the input chip selected state.
The issue I am experiencing is that the on-tap event for the component on the overlay frame is not working. This is only happening when viewing the prototype on the browser. It works as expected on the mobile app. On the browser, it’s as if the click is interpreted as a drag. That single click is functioning like a held down click. The input chip state doesn’t change, and the variable is not set. It instead grabs the sheet and moves it like the drag interaction.
If I remove the set variable step, it functions as expected. Additionally, if I move the set variable step after the change state step, it functions as expected as well. Here is what the donation sheet looks like.