fix conditional rendering of popover actions

This commit is contained in:
Henry Hiles 2026-05-26 20:56:32 -04:00
commit 2ec442b35b
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
6 changed files with 7 additions and 1 deletions

View file

@ -18,6 +18,7 @@ class MessageAvatar extends ConsumerWidget {
onTapUp: (details) => context.showUserPopover(
value,
event.sender,
roomId: event.roomId,
globalPosition: details.globalPosition,
),
child: AvatarOrHash(

View file

@ -25,6 +25,7 @@ class MessageDisplayname extends ConsumerWidget {
? (details) => context.showUserPopover(
value,
event.sender,
roomId: event.roomId,
globalPosition: details.globalPosition,
)
: null,