Skip to content

Commit

Permalink
restore some due to failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
daiagi committed May 15, 2024
1 parent 45c617f commit 175b386
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 @@ -635,7 +635,7 @@ useAsyncData('tabs-count', async () => {
}
const query = await resolveQueryPath(client.value, 'profileTabsCount')
const { data } = useAsyncQuery({
const { data } = await useAsyncQuery({
query: query.default,
clientId: client.value,
variables: {
Expand Down Expand Up @@ -672,7 +672,7 @@ const fetchTabsCountByNetwork = async (chain: Prefix) => {
}
const query = await resolveQueryPath(chain, 'profileTabsCount')
const { data } = useAsyncQuery({
const { data } = await useAsyncQuery({
query: query.default,
clientId: chain,
variables: {
Expand Down

0 comments on commit 175b386

Please sign in to comment.