Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 2d1f1fc

Browse files
committed
Fix typos
1 parent 7bd5f54 commit 2d1f1fc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

stubs/default/resources/views/profile/partials/delete-user-form.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@csrf
2020
@method('delete')
2121

22-
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">Are you sure your want to delete your account?</h2>
22+
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">Are you sure you want to delete your account?</h2>
2323

2424
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
2525
{{ __('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.') }}

stubs/inertia-react/resources/js/Pages/Profile/Partials/DeleteUserForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default function DeleteUserForm({ className }) {
5959
<Modal show={confirmingUserDeletion} onClose={closeModal}>
6060
<form onSubmit={deleteUser} className="p-6">
6161
<h2 className="text-lg font-medium text-gray-900 dark:text-gray-100">
62-
Are you sure your want to delete your account?
62+
Are you sure you want to delete your account?
6363
</h2>
6464

6565
<p className="mt-1 text-sm text-gray-600 dark:text-gray-400">

stubs/inertia-vue/resources/js/Pages/Profile/Partials/DeleteUserForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const closeModal = () => {
5353
<Modal :show="confirmingUserDeletion" @close="closeModal">
5454
<div class="p-6">
5555
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
56-
Are you sure your want to delete your account?
56+
Are you sure you want to delete your account?
5757
</h2>
5858

5959
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">

stubs/splade/resources/views/profile/partials/delete-user-form.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<x-splade-modal name="confirm-user-deletion">
1717
<x-splade-form dusk="confirm-user-deletion" method="delete" :action="route('profile.destroy')">
1818
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
19-
{{ __('Are you sure your want to delete your account?') }}
19+
{{ __('Are you sure you want to delete your account?') }}
2020
</h2>
2121

2222
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">

0 commit comments

Comments
 (0)