1
0
Fork 0
forked from Nexus/nexus

remove un-needed async

This commit is contained in:
Henry Hiles 2026-04-14 10:58:25 -04:00
commit 50e1a8e4c7
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -35,7 +35,7 @@ class EmojiPickerButton extends HookConsumerWidget {
height: 600, height: 600,
), ),
textController: controller textController: controller
..addListener(() async { ..addListener(() {
Navigator.of(context).pop(); Navigator.of(context).pop();
onSelection?.call(controller.text); onSelection?.call(controller.text);
}), }),