fix: merge issues

This commit is contained in:
Calum H. (IMB11)
2026-08-04 19:30:36 +01:00
parent 38bf2c54f3
commit ed936728ad
4 changed files with 81 additions and 11 deletions
@@ -114,6 +114,7 @@ debug('initial route.params.type:', route.params.type, '→ currentType:', curre
const isServerType = computed(() => currentType.value === 'server')
const projectType = computed(() => tags.value.projectTypes.find((x) => x.id === currentType.value))
const projectTypeId = computed(() => projectType.value?.id ?? 'mod')
watch(
() => projectType.value?.id,
@@ -423,8 +424,6 @@ const advancedFiltersCollapsed = computed({
},
})
const projectTypeId = computed(() => projectType.value?.id ?? 'mod')
debug('projectTypeId:', projectTypeId.value)
watch(projectTypeId, (val) => debug('projectTypeId changed:', val))