diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-09-28 12:08:39 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-09-28 12:08:39 -0700 |
commit | d4a234d5ce217d0599a1e7fdf6f121071ef4e25c (patch) | |
tree | 6f65d3ba3496ad83b4b449eaa9bde6ea2771cdd3 /src | |
parent | cd3b0e54fbefa6c38ae6ad81198c8d766baee2c5 (diff) | |
parent | 1185ac4053d2960cc286cbf1cf7512c8f5318330 (diff) | |
download | voidsky-d4a234d5ce217d0599a1e7fdf6f121071ef4e25c.tar.zst |
Merge branch 'small-pfp-desktop-2' of https://github.com/Tanza3D/social-app into Tanza3D-small-pfp-desktop-2
Diffstat (limited to 'src')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index fb3d66462..b1065f03c 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -42,7 +42,7 @@ import {makeProfileLink} from 'lib/routes/links' const ProfileCard = observer(function ProfileCardImpl() { const store = useStores() const {isDesktop} = useWebMediaQueries() - const size = isDesktop ? 64 : 48 + const size = isDesktop ? 32 : 48 return store.me.handle ? ( <Link href={makeProfileLink(store.me)} |