From bac694021fbfa16daf8bdec257d88e8bdf39e66c Mon Sep 17 00:00:00 2001 From: Nopfed Date: Tue, 10 Oct 2023 14:01:15 -0400 Subject: [PATCH] Adds middle click in discover feed and slug fetching --- pages/[profile]/[slugOrId].vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/[profile]/[slugOrId].vue b/pages/[profile]/[slugOrId].vue index e5f29f3..1a5b02d 100644 --- a/pages/[profile]/[slugOrId].vue +++ b/pages/[profile]/[slugOrId].vue @@ -214,7 +214,7 @@ const slugOrId = route.params['slugOrId'] as string const tab = ref(null) const { data: artwork, pending } = useLazyAsyncData(slugOrId, async () => { - const publication = await abc.legacy.fetchPublication(slugOrId) + const publication = await abc.legacy.fetchPublicationBySlugOrId(slugOrId) console.log('pub', route.path, publication)