diff --git a/src/web/src/components/Posts/Post.tsx b/src/web/src/components/Posts/Post.tsx
index cf15774c07..ae3b4605dd 100644
--- a/src/web/src/components/Posts/Post.tsx
+++ b/src/web/src/components/Posts/Post.tsx
@@ -252,7 +252,7 @@ const PostComponent = ({ postUrl }: Props) => {
{!desktop && (
<>
diff --git a/src/web/src/components/Posts/PostAvatar.tsx b/src/web/src/components/Posts/PostAvatar.tsx
index 4487376af3..b202b8ce52 100644
--- a/src/web/src/components/Posts/PostAvatar.tsx
+++ b/src/web/src/components/Posts/PostAvatar.tsx
@@ -4,7 +4,7 @@ import { makeStyles } from '@material-ui/core/styles';
type AvatarProps = {
name: string;
img?: string;
- postURL: string;
+ blog: string;
};
const useStyles = makeStyles((theme: Theme) =>
@@ -39,7 +39,7 @@ const useStyles = makeStyles((theme: Theme) =>
})
);
-const PostAvatar = ({ name, img, postURL }: AvatarProps) => {
+const PostAvatar = ({ name, img, blog }: AvatarProps) => {
const classes = useStyles();
if (img) {
@@ -58,7 +58,7 @@ const PostAvatar = ({ name, img, postURL }: AvatarProps) => {
)
.join('');
return (
-
+
{initials}
diff --git a/src/web/src/components/Posts/PostInfo.tsx b/src/web/src/components/Posts/PostInfo.tsx
index 11182e68c0..bbdb479506 100644
--- a/src/web/src/components/Posts/PostInfo.tsx
+++ b/src/web/src/components/Posts/PostInfo.tsx
@@ -69,7 +69,7 @@ const PostDesktopInfo = ({ authorName, postDate, blogUrl, postUrl }: Props) => {
return (