fix(FavPlayersPage): img height
This commit is contained in:
parent
f5f68496c1
commit
59cf101c26
@ -52,7 +52,7 @@ export function FavePlayersPage() {
|
|||||||
<Flex gap={12}>
|
<Flex gap={12}>
|
||||||
{e.avatar?.includes('noavatar')
|
{e.avatar?.includes('noavatar')
|
||||||
? <Avatar size={64} shape="square">{e.name}</Avatar>
|
? <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
|
<Flex
|
||||||
vertical
|
vertical
|
||||||
justify="center"
|
justify="center"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user