Skip to content

Commit 0d5e162

Browse files
committed
fixing the lint yaml
1 parent 4b379f5 commit 0d5e162

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uses: stefanzweifel/git-auto-commit-action@v5
4444
with:
4545
commit_message: fix code style
46-
commit_options: "--no-verify"
46+
commit_options: '--no-verify'
4747

4848
# We need to run PHPStan after commiting changes as it does not auto-fix errors.
4949
- name: PHPStan

app/Http/Controllers/Auth/PasswordResetLinkController.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Illuminate\Http\RedirectResponse;
77
use Illuminate\Http\Request;
88
use Illuminate\Support\Facades\Password;
9-
use Illuminate\Validation\ValidationException;
109
use Inertia\Inertia;
1110
use Inertia\Response;
1211

resources/js/pages/auth/verify-email.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ export default function VerifyEmail({ status }: { status?: string }) {
1616
};
1717

1818
return (
19-
<AuthLayout title="Verify Email" description="Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn't receive the email, we will gladly send you another">
19+
<AuthLayout
20+
title="Verify Email"
21+
description="Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn't receive the email, we will gladly send you another"
22+
>
2023
<Head title="Email Verification" />
2124

2225
{status === 'verification-link-sent' && (

0 commit comments

Comments
 (0)