From f5f68496c1465335bc8ad4eddc74375c4d2e368d Mon Sep 17 00:00:00 2001 From: kyuuseiryuu Date: Wed, 11 Feb 2026 16:05:32 +0900 Subject: [PATCH] fix(FavePlayersPage): add objectFit: 'cover' to avatar image Added `objectFit: 'cover'` to ensure avatars are displayed consistently. --- src/page/FavPlayersPage.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/page/FavPlayersPage.tsx b/src/page/FavPlayersPage.tsx index 91c5341..37e06a8 100644 --- a/src/page/FavPlayersPage.tsx +++ b/src/page/FavPlayersPage.tsx @@ -50,7 +50,9 @@ export function FavePlayersPage() { style={{ width: 240 }} > - {e.avatar?.includes('noavatar') ? {e.name} : } + {e.avatar?.includes('noavatar') + ? {e.name} + : }