Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/kodadot/nft-gallery into fo…
Browse files Browse the repository at this point in the history
…llowers-exclude
  • Loading branch information
daiagi committed May 16, 2024
2 parents 20ace6d + d13865a commit 7f99edb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/profile/ProfileDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ const { data: isFollowingThisAccount, refresh: refreshFollowingStatus } =
isFollowing(accountId.value, route.params?.id as string),
)
const { data: followers, refresh: refreshFollowers } = await useAsyncData(
const { data: followers, refresh: refreshFollowers } = useAsyncData(
`followersof${route.params.id}`,
() =>
fetchFollowersOf(route.params.id as string, {
Expand All @@ -435,7 +435,7 @@ const { data: followers, refresh: refreshFollowers } = await useAsyncData(
}),
)
const { data: following, refresh: refreshFollowing } = await useAsyncData(
const { data: following, refresh: refreshFollowing } = useAsyncData(
`following${route.params.id}`,
() => fetchFollowing(route.params.id as string, { limit: 1 }),
)
Expand Down

0 comments on commit 7f99edb

Please sign in to comment.