Skip to content

Commit d82d8b3

Browse files
spitfire305github-actions[bot]
authored andcommitted
Apply automatic changes
1 parent 16654b1 commit d82d8b3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/Livewire/Users/Otp.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22

33
namespace App\Livewire\Users;
44

5-
use Livewire\Attributes\Validate;
6-
use Livewire\Component;
75
use App\Models\PasswordSecurity;
86
use App\Models\User;
7+
use Livewire\Attributes\Validate;
8+
use Livewire\Component;
99
use PragmaRX\Google2FA\Google2FA;
1010

1111
class Otp extends Component
1212
{
1313
public $duplicates;
14+
1415
public bool $clickedBefore = false;
16+
1517
protected $listeners = ['refreshTable' => '$refresh']; // Listen for table refresh event
1618

1719
#[Validate('required|numeric')]
@@ -80,7 +82,6 @@ public function disable2fa()
8082
$this->clickedBefore = true;
8183
}
8284

83-
8485
}
8586

8687
public function render()

0 commit comments

Comments
 (0)