diff options
author | dan <dan.abramov@gmail.com> | 2023-11-13 18:35:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 10:35:15 -0800 |
commit | e1938931e028f4486cce8cd9da39ffd940c10ec2 (patch) | |
tree | d7d22d93a95503350ab4d2d0ace409cd873815cb /src/view/shell/desktop/LeftNav.tsx | |
parent | c3edde8ac6f9c65eac1004cd8e2fc14b0493cba8 (diff) | |
download | voidsky-e1938931e028f4486cce8cd9da39ffd940c10ec2.tar.zst |
Refactor profile screen to use new pager and react-query (#1870)
* Profile tabs WIP * Refactor the profile screen to use react-query (WIP) * Add the profile shadow and get follow, mute, and block working * Cleanup --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/shell/desktop/LeftNav.tsx')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index c9a03ce62..d7814cb5d 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -251,7 +251,7 @@ function ComposeBtn() { } export const DesktopLeftNav = observer(function DesktopLeftNav() { - const store = useStores() + const {currentAccount} = useSession() const pal = usePalette('default') const {isDesktop, isTablet} = useWebMediaQueries() const numUnread = useUnreadNotifications() @@ -370,7 +370,7 @@ export const DesktopLeftNav = observer(function DesktopLeftNav() { label="Moderation" /> <NavItem - href={makeProfileLink(store.me)} + href={makeProfileLink(currentAccount)} icon={ <UserIcon strokeWidth={1.75} |