Private
Public Access
1
0

Fix Settings view rendering duplicate layout

Remove nested AppLayout wrapper from SettingsView — the layout is
already applied at the App.vue level around router-view.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Catherine Renelle
2026-02-08 16:23:31 -05:00
parent 3e0446c9be
commit 6e80bcf98b
+2 -3
View File
@@ -1,5 +1,5 @@
<template> <template>
<AppLayout> <div>
<v-tabs v-model="activeTab" color="primary"> <v-tabs v-model="activeTab" color="primary">
<v-tab value="profile">Profile</v-tab> <v-tab value="profile">Profile</v-tab>
<v-tab value="connections">Bank Connections</v-tab> <v-tab value="connections">Bank Connections</v-tab>
@@ -297,12 +297,11 @@
</v-card> </v-card>
</v-tabs-window-item> </v-tabs-window-item>
</v-tabs-window> </v-tabs-window>
</AppLayout> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, reactive, computed, onMounted } from 'vue' import { ref, reactive, computed, onMounted } from 'vue'
import AppLayout from '@/components/layout/AppLayout.vue'
import { useAuthStore } from '@/stores/auth' import { useAuthStore } from '@/stores/auth'
import { bankSyncApi } from '@/services/bankSync' import { bankSyncApi } from '@/services/bankSync'
import { accountsApi } from '@/services/accounts' import { accountsApi } from '@/services/accounts'