Skip to content

Commit 85e53d0

Browse files
committed
Fixes
1 parent 734cb8f commit 85e53d0

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

src/views/settings/Appearance.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ import SelectColorModeButton from '@/components/SelectColorModeButton.vue';
66

77
<template>
88
<AppLayout>
9-
<InertiaHead title="Appearance Settings" />
10-
119
<SettingsLayout>
1210
<Card
1311
pt:body:class="max-w-2xl space-y-3"

src/views/settings/Password.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ const submit = () => {
5454
5555
<template>
5656
<AppLayout>
57-
<InertiaHead title="Password Settings" />
58-
5957
<SettingsLayout>
6058
<Card
6159
pt:body:class="max-w-2xl space-y-3"

src/views/settings/Profile.vue

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup>
2-
import { ref, useTemplateRef, computed, onMounted } from 'vue';
2+
import { ref, computed } from 'vue';
33
import { useToast } from 'primevue/usetoast';
44
import { useAxiosForm } from '@/composables/useAxiosForm';
55
import { useAuthStore } from '@/stores/auth';
@@ -13,8 +13,6 @@ const toast = useToast();
1313
const authStore = useAuthStore();
1414
const { flashMessages } = useFlashMessage();
1515
16-
const nameInput = useTemplateRef('name-input');
17-
1816
const verificationLinkSent = computed(() => flashMessages.success === 'verification-link-sent');
1917
const deleteUserModalOpen = ref(false);
2018
@@ -44,10 +42,6 @@ const submit = () => {
4442
const resendVerifyEmail = () => {
4543
authStore.sendVerificationEmail();
4644
};
47-
48-
onMounted(() => {
49-
nameInput.value.$el.focus();
50-
});
5145
</script>
5246

5347
<template>

0 commit comments

Comments
 (0)