onTapUp -> onTap when possible

This commit is contained in:
Henry Hiles 2026-06-09 20:40:31 -04:00
commit abba60c28b
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
4 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@ class MentionChip extends ConsumerWidget {
return mention == null
? SizedBox.shrink()
: InkWell(
onTapUp: (details) {
onTap: () {
if (membership != null) {
context.showUserPopover(membership, mention, roomId: roomId);
}