Closed Philrobots closed 8 months ago
At line 71, of the connected-accounts-form.blade.php
connected-accounts-form.blade.php
The value :
"$toggle('confirmingRemove')"
does not seems to exist anymore, it should be remove by :
"$toggle('confirmingAccountRemoval')"
<x-slot name="footer"> <x-secondary-button wire:click="$toggle('confirmingRemove')" wire:loading.attr="disabled"> {{ __('Cancel') }} </x-secondary-button> <x-danger-button class="ml-2" wire:click="removeConnectedAccount" wire:loading.attr="disabled"> {{ __('Remove Account') }} </x-danger-button> </x-slot>
Should be :
<x-slot name="footer"> <x-secondary-button wire:click="$toggle('confirmingAccountRemoval')" wire:loading.attr="disabled"> {{ __('Cancel') }} </x-secondary-button> <x-danger-button class="ml-2" wire:click="removeConnectedAccount" wire:loading.attr="disabled"> {{ __('Remove Account') }} </x-danger-button> </x-slot>
Problem description
At line 71, of the
connected-accounts-form.blade.php
The value :
"$toggle('confirmingRemove')"
does not seems to exist anymore, it should be remove by :
"$toggle('confirmingAccountRemoval')"
Expected behavior
Should be :