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 146f299 commit 85d21df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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 @@ -66,10 +66,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 @@ -82,4 +82,4 @@ public function render(): View
...$this->getLayoutData(),
]);
}
}
}
2 changes: 1 addition & 1 deletion src/Http/Livewire/Auth/RequestPasswordReset.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ public function render(): View
...$this->getLayoutData(),
]);
}
}
}

0 comments on commit 85d21df

Please sign in to comment.