Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Baspa authored and github-actions[bot] committed Sep 1, 2024
1 parent 8fa28c3 commit 24a2d44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Http/Livewire/Auth/PasswordReset.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ protected function getFormSchema(): array
->required(),
Hidden::make('email')
->extraAttributes(['name' => 'email'])
->afterStateHydrated(fn($component) => $component->state(request()->get('email'))),
->afterStateHydrated(fn ($component) => $component->state(request()->get('email'))),
Hidden::make('token')
->extraAttributes(['name' => 'token'])
->afterStateHydrated(fn($component) => $component->state(request()->route('token'))),
->afterStateHydrated(fn ($component) => $component->state(request()->route('token'))),
];
}

Expand All @@ -84,4 +84,4 @@ public function render(): View
...$this->getLayoutData(),
]);
}
}
}

0 comments on commit 24a2d44

Please sign in to comment.