jantinnerezo / livewire-alert

SweetAlert2 wrapper for Livewire
https://livewire-alert.jantinnerezo.com
MIT License
682 stars 73 forks source link

Console showing error #123

Closed xBigDaddyx closed 7 months ago

xBigDaddyx commented 11 months ago

Hi! i found error on console, please kindly help because i dont understand what is wrong with that. Thanks! image

jantinnerezo commented 11 months ago

Curious, how your setup looks like?

technetist commented 10 months ago

I ran into this same error and resolved it.

I had my array key as onConfirm when it should have been onConfirmed:

$this->alert('warning', 'Doing something!', [
    ///
    'showConfirmButton' => true,
    'onConfirmed' => 'doSomething',
    ///
]