diff options
author | dan <dan.abramov@gmail.com> | 2023-11-23 19:43:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-23 19:43:23 +0000 |
commit | 7ccbd14d5f159363ffc3c087281a6a89f770f6b8 (patch) | |
tree | 56136b1531d502663c5dcedabb5e45d53258d041 /src | |
parent | 4272d291a95620a4b22bfb395f53fad6414e4b71 (diff) | |
download | voidsky-7ccbd14d5f159363ffc3c087281a6a89f770f6b8.tar.zst |
Show feeds in PWI (#1984)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Profile.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx index 7c0491d52..48c914054 100644 --- a/src/view/screens/Profile.tsx +++ b/src/view/screens/Profile.tsx @@ -157,7 +157,7 @@ function ProfileScreenLoaded({ const isMe = profile.did === currentAccount?.did const showRepliesTab = hasSession const showLikesTab = isMe - const showFeedsTab = hasSession && (isMe || extraInfoQuery.data?.hasFeedgens) + const showFeedsTab = isMe || extraInfoQuery.data?.hasFeedgens const showListsTab = hasSession && (isMe || extraInfoQuery.data?.hasLists) const sectionTitles = useMemo<string[]>(() => { return [ |