Skip to content

Commit 675b7b3

Browse files
committed
Merge branch 'develop' of https://github.com/laravel/react-starter-kit into develop
2 parents ae31913 + 5d2e1f0 commit 675b7b3

File tree

6 files changed

+10
-21
lines changed

6 files changed

+10
-21
lines changed

resources/js/Components/Settings/DeleteUser.tsx

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@ export default function DeleteUser() {
4646
<div>
4747
<SettingsHeading
4848
title="Delete Account"
49-
description="Remove your account and all of its resources"
49+
description="Delete your account and all of its resources"
5050
/>
5151
<Dialog>
5252
<DialogTrigger asChild>
5353
<Button variant="destructive">Delete Account</Button>
5454
</DialogTrigger>
5555
<DialogContent>
56-
<form className="space-y-4" onSubmit={deleteUser}>
56+
<form className="space-y-6" onSubmit={deleteUser}>
5757
<DialogHeader className="space-y-3">
5858
<DialogTitle>Are you sure you want to delete your account?</DialogTitle>
5959
<DialogDescription>
60-
Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.
60+
Once your account is deleted, all of its resources and data will also be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.
6161
</DialogDescription>
6262
</DialogHeader>
6363
<div className="grid gap-2">
@@ -94,17 +94,6 @@ export default function DeleteUser() {
9494
</form>
9595
</DialogContent>
9696
</Dialog>
97-
98-
<Alert variant="destructive" className="mt-4">
99-
<TriangleAlert className="h-4 w-4" />
100-
<AlertTitle>Warning</AlertTitle>
101-
<AlertDescription>
102-
Once your account is deleted, all of its resources and data
103-
will be permanently removed. Before deleting your account,
104-
please download any data or information that you wish to
105-
retain.
106-
</AlertDescription>
107-
</Alert>
10897
</div>
10998
);
11099
}

resources/js/Pages/Auth/ForgotPassword.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default function ForgotPassword({ status }: { status?: string }) {
6060
<hr />
6161
</form>
6262
<div className="text-center text-sm space-x-1">
63-
<span>Return back to the</span>
63+
<span>Or, return to the</span>
6464
<Link href={route("login")} className="underline underline-offset-4">
6565
login page
6666
</Link>

resources/js/Pages/Auth/Login.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default function Login({
4646
return (
4747
<AuthLayout
4848
title="Log in to your account"
49-
description="Enter your email and password below to login"
49+
description="Enter your email and password below to log in"
5050
>
5151
<Head title="Log in" />
5252

@@ -101,7 +101,7 @@ export default function Login({
101101
{processing && (
102102
<LoaderCircle className="h-4 w-4 animate-spin" />
103103
)}
104-
Log in
104+
Log In
105105
</Button>
106106

107107
<hr />

resources/js/Pages/Auth/Register.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default function Register() {
120120
href={route("login")}
121121
className="underline underline-offset-4"
122122
>
123-
Sign in
123+
Log in
124124
</Link>
125125
</div>
126126
</form>

resources/js/Pages/Settings/Profile.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function Profile({
6161
<div class="flex flex-col">
6262
<SettingsHeading
6363
title="Profile Information"
64-
description="Update your account's profile information and email address."
64+
description="Update your name and email address"
6565
/>
6666

6767
<form onSubmit={submit} className="space-y-6">
@@ -141,4 +141,4 @@ export default function Profile({
141141
</SettingsLayout>
142142
</AppLayout>
143143
);
144-
}
144+
}

resources/js/Pages/Welcome.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default function Welcome({
5656
href={route('login')}
5757
className="rounded-md px-3 py-2 text-black ring-1 ring-transparent transition hover:text-black/70 focus:outline-none focus-visible:ring-[#FF2D20] dark:text-white dark:hover:text-white/80 dark:focus-visible:ring-white"
5858
>
59-
Log in
59+
Log In
6060
</Link>
6161
<Link
6262
href={route('register')}

0 commit comments

Comments
 (0)