Skip to content

Commit

Permalink
Remove reference to undefined properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Baspa committed Aug 16, 2024
1 parent 493dd19 commit 526f7e3
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions src/Http/Livewire/Auth/LoginTwoFactor.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ public function mount(TwoFactorLoginRequest $request): void
if ($request->challengedUser()) {
$this->challengedUser = $request->challengedUser();
}

$this->form->fill();
}

public function hasLogo(): bool
Expand Down
2 changes: 0 additions & 2 deletions src/Http/Livewire/Auth/PasswordConfirmation.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ class PasswordConfirmation extends Component implements HasForms

public function mount(): void
{
$this->form->fill();

if (session('status')) {
Notification::make()
->title(session('status'))
Expand Down
2 changes: 0 additions & 2 deletions src/Http/Livewire/Auth/PasswordReset.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ public function mount(): void
redirect()->intended(Filament::getUrl());
}

$this->form->fill();

if (session('status')) {
Notification::make()
->title(session('status'))
Expand Down
2 changes: 0 additions & 2 deletions src/Http/Livewire/Auth/RequestPasswordReset.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ public function mount(): void
redirect()->intended(Filament::getUrl());
}

$this->form->fill();

if (session('status')) {
Notification::make()
->title(session('status'))
Expand Down

0 comments on commit 526f7e3

Please sign in to comment.