Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet committed Dec 9, 2022
1 parent 7bd5f54 commit 2d1f1fc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@csrf
@method('delete')

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

<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
{{ __('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.') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function DeleteUserForm({ className }) {
<Modal show={confirmingUserDeletion} onClose={closeModal}>
<form onSubmit={deleteUser} className="p-6">
<h2 className="text-lg font-medium text-gray-900 dark:text-gray-100">
Are you sure your want to delete your account?
Are you sure you want to delete your account?
</h2>

<p className="mt-1 text-sm text-gray-600 dark:text-gray-400">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const closeModal = () => {
<Modal :show="confirmingUserDeletion" @close="closeModal">
<div class="p-6">
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
Are you sure your want to delete your account?
Are you sure you want to delete your account?
</h2>

<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<x-splade-modal name="confirm-user-deletion">
<x-splade-form dusk="confirm-user-deletion" method="delete" :action="route('profile.destroy')">
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
{{ __('Are you sure your want to delete your account?') }}
{{ __('Are you sure you want to delete your account?') }}
</h2>

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

0 comments on commit 2d1f1fc

Please sign in to comment.