diff options
Diffstat (limited to 'gui/src/components/post/Post.tsx')
| -rw-r--r-- | gui/src/components/post/Post.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/components/post/Post.tsx b/gui/src/components/post/Post.tsx index 2965040..2d9a09a 100644 --- a/gui/src/components/post/Post.tsx +++ b/gui/src/components/post/Post.tsx @@ -22,7 +22,7 @@ export interface PostProps { profile?: UserProfile; } function Post(props: PostProps) { - console.log("post", props); + // console.log("post", props); const { poast } = props; if (!poast || poast.contents === null) { return null; @@ -60,7 +60,7 @@ function TrillPost(props: PostProps) { setModal(<ShipModal ship={poast.author} />); } const avatar = profile ? ( - <div className="avatar cp" role="link" onMouseUp={openModal}> + <div className="avatar sigil cp" role="link" onMouseUp={openModal}> <img src={profile.picture} /> </div> ) : ( |
