From cd4172ac0d2222fd968538cec7bea521f5a5bef3 Mon Sep 17 00:00:00 2001 From: Dylan Audius Date: Tue, 26 May 2026 17:37:21 -0700 Subject: [PATCH] fix(web): match Recent Comments tile background to Related Artists The Recent Comments sidebar tile rendered with `backgroundColor='surface1'` (secondary surface gray), while the Related Artists tile next to it uses `backgroundColor='white'` via ProfilePictureListTile's Paper. The mismatch made the column visually inconsistent. Switch Recent Comments to `white` so both tiles share the lighter background. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../pages/profile-page/components/desktop/RecentComments.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/pages/profile-page/components/desktop/RecentComments.tsx b/packages/web/src/pages/profile-page/components/desktop/RecentComments.tsx index 6920917cad0..8da07e4f40f 100644 --- a/packages/web/src/pages/profile-page/components/desktop/RecentComments.tsx +++ b/packages/web/src/pages/profile-page/components/desktop/RecentComments.tsx @@ -171,7 +171,7 @@ export const RecentComments = ({ userId }: { userId: number }) => { borderRadius='m' shadow='mid' p='l' - backgroundColor='surface1' + backgroundColor='white' > {trail.map((style, index) => (