diff options
Diffstat (limited to 'front/src/components/post/Post.tsx')
-rw-r--r-- | front/src/components/post/Post.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/front/src/components/post/Post.tsx b/front/src/components/post/Post.tsx index e61efb0..277c119 100644 --- a/front/src/components/post/Post.tsx +++ b/front/src/components/post/Post.tsx @@ -47,7 +47,7 @@ export default Post; function TrillPost(props: PostProps) { const { poast, profile, fake } = props; - const { setModal } = useLocalState(); + const setModal = useLocalState((s) => s.setModal); const [_, navigate] = useLocation(); function openThread(_e: React.MouseEvent) { const sel = window.getSelection()?.toString(); @@ -64,7 +64,7 @@ function TrillPost(props: PostProps) { </div> ) : ( <div className="avatar sigil cp" role="link" onMouseUp={openModal}> - <Sigil patp={poast.author} size={42} /> + <Sigil patp={poast.author} size={46} /> </div> ); return ( |