Skip to content

Commit 971dee1

Browse files
committed
cleanup unused refs
1 parent b0fecc5 commit 971dee1

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

resources/js/pages/settings/Password.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import AppLayout from '@/layouts/AppLayout.vue';
55
import SettingsLayout from '@/layouts/settings/Layout.vue';
66
import { edit } from '@/routes/user-password';
77
import { Form, Head } from '@inertiajs/vue3';
8-
import { ref } from 'vue';
98
109
import HeadingSmall from '@/components/HeadingSmall.vue';
1110
import { Button } from '@/components/ui/button';
@@ -19,9 +18,6 @@ const breadcrumbItems: BreadcrumbItem[] = [
1918
href: edit().url,
2019
},
2120
];
22-
23-
const passwordInput = ref<HTMLInputElement | null>(null);
24-
const currentPasswordInput = ref<HTMLInputElement | null>(null);
2521
</script>
2622

2723
<template>
@@ -53,7 +49,6 @@ const currentPasswordInput = ref<HTMLInputElement | null>(null);
5349
<Label for="current_password">Current password</Label>
5450
<Input
5551
id="current_password"
56-
ref="currentPasswordInput"
5752
name="current_password"
5853
type="password"
5954
class="mt-1 block w-full"
@@ -67,7 +62,6 @@ const currentPasswordInput = ref<HTMLInputElement | null>(null);
6762
<Label for="password">New password</Label>
6863
<Input
6964
id="password"
70-
ref="passwordInput"
7165
name="password"
7266
type="password"
7367
class="mt-1 block w-full"

0 commit comments

Comments
 (0)