Button don't respond on wire:click

Rare behavior but it’s the thing.
I have this two buttons next to each other.

<button class="btn btn-success" wire:click="openFormUser">New User</button>
<button class="btn btn-secondary" wire:click="switchComponentHandler">Back</button>

The Back button works well when is clicked, but the New don’t. With this I try use wire:click="$emitSelf('openFormUser')" and neither. If use data-toggle="modal" data-target="#formUserCompanyModal" open the modal without issue, but need to pass a parameter to other component before open this modal. What could be happening here?

I solved it, just put both inside div also div parents :face_with_hand_over_mouth: