Add feedgens tab to profile (#1889)

This commit is contained in:
Paul Frazee 2023-11-13 14:46:19 -08:00 committed by GitHub
parent b04748e703
commit 9fca7b3af6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 296 additions and 34 deletions

View file

@ -24,7 +24,7 @@ export function useProfileExtraInfoQuery(did: string) {
])
return {
hasLists: listsRes.data.lists.length > 0,
hasFeeds: feedsRes.data.feeds.length > 0,
hasFeedgens: feedsRes.data.feeds.length > 0,
}
},
})