From c655db72aff64daffdeaf2436dc684f87971ce35 Mon Sep 17 00:00:00 2001 From: KhooLy <73142442+KhooLy@users.noreply.github.com> Date: Wed, 29 Jul 2026 03:57:39 +0300 Subject: [PATCH] fix: make cast avatar photos circular, matching the initials placeholder --- src/components/detail/castSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/detail/castSection.tsx b/src/components/detail/castSection.tsx index 5c26067..9c1fc4a 100644 --- a/src/components/detail/castSection.tsx +++ b/src/components/detail/castSection.tsx @@ -103,7 +103,7 @@ export const CastAvatar = React.memo(function CastAvatar({ name, role, imageUrl style={{ width: '4.375rem', height: '4.375rem', - borderRadius: showImage ? 8 : '50%', + borderRadius: '50%', background: showImage ? 'transparent' : 'rgba(255,255,255,0.1)', display: 'flex', alignItems: 'center',