fix(FavPlayersPage): img height

This commit is contained in:
kyuuseiryuu 2026-02-11 16:08:26 +09:00
parent f5f68496c1
commit 59cf101c26

View File

@ -52,7 +52,7 @@ export function FavePlayersPage() {
<Flex gap={12}>
{e.avatar?.includes('noavatar')
? <Avatar size={64} shape="square">{e.name}</Avatar>
: <Image width={64} src={e.avatar} style={{ objectFit: 'cover' }} />}
: <Image width={64} height={64} src={e.avatar} style={{ objectFit: 'cover' }} />}
<Flex
vertical
justify="center"