Fix thumbnail size

This commit is contained in:
2023-08-10 12:14:44 +02:00
parent d1e55d574e
commit 1cf79e621f
3 changed files with 7 additions and 3 deletions

View File

@ -9,7 +9,7 @@ export function MemberPhoto(p: {
<Avatar
sx={{ width: `${p.width}px`, height: "auto", display: "inline-block" }}
variant="rounded"
src={p.member.photoURL}
src={p.member.thumbnailURL}
/>
);
}