Browse Source

fix(ui): avoid duplicate toast on media library load error

Made-with: Cursor
tags/邮箱功能前置
npmrun 3 weeks ago
parent
commit
761278a593
  1. 1
      app/pages/me/media/index.vue

1
app/pages/me/media/index.vue

@ -55,6 +55,7 @@ async function load() {
})
const body = await fetchData<{ items: MediaAssetRow[]; total: number }>(
`/api/me/media/assets?${q.toString()}`,
{ notify: false },
)
items.value = body.items
total.value = body.total

Loading…
Cancel
Save