Skip to content

Commit 05d995a

Browse files
committed
eslint
1 parent 4b78d29 commit 05d995a

File tree

7 files changed

+31
-11
lines changed

7 files changed

+31
-11
lines changed

resources/js/components/FlashMessages.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Check, Info, TriangleAlert, CircleAlert, Megaphone } from 'lucide-vue-n
1313
<template #icon>
1414
<Check />
1515
</template>
16-
{{ $page.props.flash.success}}
16+
{{ $page.props.flash.success }}
1717
</Message>
1818
<Message
1919
v-if="$page.props.flash.info"

resources/js/pages/auth/ConfirmPassword.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ const submit = () => {
2020
<InertiaHead title="Confirm password" />
2121

2222
<template #title>
23-
<div class="text-center">Confirm your password</div>
23+
<div class="text-center">
24+
Confirm your password
25+
</div>
2426
</template>
2527

2628
<template #subtitle>

resources/js/pages/auth/ForgotPassword.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,15 @@ onMounted(() => {
4242
</template>
4343

4444
<template #title>
45-
<div class="text-center">Forgot password</div>
45+
<div class="text-center">
46+
Forgot password
47+
</div>
4648
</template>
4749

4850
<template #subtitle>
49-
<div class="text-center">Enter your email to receive a password reset link</div>
51+
<div class="text-center">
52+
Enter your email to receive a password reset link
53+
</div>
5054
</template>
5155

5256
<form

resources/js/pages/auth/Login.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,15 @@ onMounted(() => {
4949
</template>
5050

5151
<template #title>
52-
<div class="text-center">Log in to your account</div>
52+
<div class="text-center">
53+
Log in to your account
54+
</div>
5355
</template>
5456

5557
<template #subtitle>
56-
<div class="text-center">Enter your email and password below to log in</div>
58+
<div class="text-center">
59+
Enter your email and password below to log in
60+
</div>
5761
</template>
5862

5963
<form

resources/js/pages/auth/Register.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,15 @@ onMounted(() => {
2828
<InertiaHead title="Register" />
2929

3030
<template #title>
31-
<div class="text-center">Create an account</div>
31+
<div class="text-center">
32+
Create an account
33+
</div>
3234
</template>
3335

3436
<template #subtitle>
35-
<div class="text-center">Enter your details below to create your account</div>
37+
<div class="text-center">
38+
Enter your details below to create your account
39+
</div>
3640
</template>
3741

3842
<form

resources/js/pages/auth/ResetPassword.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,15 @@ onMounted(() => {
3939
<InertiaHead title="Reset Password" />
4040

4141
<template #title>
42-
<div class="text-center">Reset password</div>
42+
<div class="text-center">
43+
Reset password
44+
</div>
4345
</template>
4446

4547
<template #subtitle>
46-
<div class="text-center">Please enter your new password below</div>
48+
<div class="text-center">
49+
Please enter your new password below
50+
</div>
4751
</template>
4852

4953
<form

resources/js/pages/auth/VerifyEmail.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ const verificationLinkSent = computed(
2828
<InertiaHead title="Email Verification" />
2929

3030
<template #title>
31-
<div class="text-center">Verify email</div>
31+
<div class="text-center">
32+
Verify email
33+
</div>
3234
</template>
3335

3436
<template #subtitle>

0 commit comments

Comments
 (0)