Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 51c9610

Browse files
committedMar 16, 2022
Add semi
1 parent e8d2720 commit 51c9610

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ const form = useForm({
1818
const confirmUserDeletion = () => {
1919
confirmingUserDeletion.value = true;
2020
21-
setTimeout(() => passwordInput.value.focus(), 250);
21+
setTimeout(() => {
22+
passwordInput.value.focus();
23+
}, 250);
2224
};
2325
2426
const deleteUser = () => {

0 commit comments

Comments
 (0)
Please sign in to comment.