Skip to content

Commit

Permalink
Fix type assertion for remember field in Login component
Browse files Browse the repository at this point in the history
  • Loading branch information
angristan committed Jan 17, 2025
1 parent 41c10ec commit 4c31779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Pages/Auth/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Login({
const { data, setData, post, processing, errors, reset } = useForm({
email: '',
password: '',
remember: false,
remember: false as boolean,
});

const handleSubmit = (e: React.FormEvent) => {
Expand Down

0 comments on commit 4c31779

Please sign in to comment.