From 56b7ee1d69682f3c24d23251d88e0c2055a8de95 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Thu, 1 Jan 2026 02:44:25 +0800 Subject: [PATCH] :bug: Fix style mismatch --- lib/widgets/post/post_reaction_sheet.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/widgets/post/post_reaction_sheet.dart b/lib/widgets/post/post_reaction_sheet.dart index f4cc17ca..5a453c58 100644 --- a/lib/widgets/post/post_reaction_sheet.dart +++ b/lib/widgets/post/post_reaction_sheet.dart @@ -517,7 +517,10 @@ class ReactionDetailsPopup extends HookConsumerWidget { leading: AccountPfcGestureDetector( uname: reaction.account?.name, child: reaction.actor != null - ? ActorPictureWidget(actor: reaction.actor!) + ? ActorPictureWidget( + actor: reaction.actor!, + radius: 20, + ) : ProfilePictureWidget( file: reaction.account?.profile.picture, ),