Skip to content

Commit ace0cd0

Browse files
Merge pull request #224 from laravel/fix_ci
Fix linting issue
2 parents 4ec61d3 + b789f5c commit ace0cd0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

resources/js/components/DeleteUser.vue

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<script setup lang="ts">
22
import ProfileController from '@/actions/App/Http/Controllers/Settings/ProfileController';
3-
import { Form } from '@inertiajs/vue3';
4-
import { useTemplateRef } from 'vue';
5-
63
import HeadingSmall from '@/components/HeadingSmall.vue';
74
import { Button } from '@/components/ui/button';
85
import {
@@ -15,8 +12,7 @@ import {
1512
DialogTitle,
1613
DialogTrigger,
1714
} from '@/components/ui/dialog';
18-
19-
const passwordInput = useTemplateRef('passwordInput');
15+
import { Form } from '@inertiajs/vue3';
2016
</script>
2117

2218
<template>
@@ -48,7 +44,7 @@ const passwordInput = useTemplateRef('passwordInput');
4844
preserveScroll: true,
4945
}"
5046
class="space-y-6"
51-
v-slot="{ errors, processing, reset, clearErrors }"
47+
v-slot="{ processing, reset, clearErrors }"
5248
>
5349
<DialogHeader class="space-y-3">
5450
<DialogTitle

0 commit comments

Comments
 (0)