fix(board): unwrap API envelope in composables, isolate member profile fetch

This commit is contained in:
Jennie Robinson Faber 2026-04-14 17:24:30 +01:00
parent f8bc5502ba
commit 4b3ba411dd
3 changed files with 7 additions and 8 deletions

View file

@ -7,7 +7,7 @@ export function useBoardChannels() {
async function fetchChannels() {
const result = await $fetch('/api/board/channels')
channels.value = result || []
channels.value = result?.channels || []
return channels.value
}

View file

@ -10,7 +10,7 @@ export function useBoardPosts() {
loading.value = true
try {
const result = await $fetch('/api/board/posts', { params })
posts.value = result || []
posts.value = result?.posts || []
return posts.value
} finally {
loading.value = false