feat: updating category from settings

This commit is contained in:
Jannat Patel
2024-09-24 10:33:23 +05:30
parent 62cb198492
commit 6fb206cc4e
3 changed files with 7 additions and 17 deletions

View File

@@ -254,13 +254,6 @@ const tabs = computed(() => {
})
})
watch(
() => activeTab.value,
(value) => {
console.log('Tab watcher', value)
}
)
watch(show, async () => {
if (show.value) {
const currentTab = await tabs.value
@@ -268,7 +261,6 @@ watch(show, async () => {
.find((item) => item.label === settingsStore.activeTab)
activeTab.value = currentTab || tabs.value[0].items[0]
} else {
console.log('else')
activeTab.value = null
settingsStore.isSettingsOpen = false
}