Skip to content

Commit

Permalink
Adds middle click in discover feed and slug fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
Nopfed committed Oct 10, 2023
1 parent 25d1b70 commit bac6940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/[profile]/[slugOrId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const slugOrId = route.params['slugOrId'] as string
const tab = ref<null | string>(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)
Expand Down

0 comments on commit bac6940

Please sign in to comment.