upgrade deps and fix lints

This commit is contained in:
Fabian Freund
2025-05-25 22:48:33 +02:00
parent 572b27ad8b
commit eba9e6f763
8 changed files with 38 additions and 22 deletions
@@ -51,8 +51,10 @@ GeckoSelectionActionService selectionActionService(Ref ref) {
logger.e('No default search bang found');
}
}),
FindInPageAction((text) {
ref.read(findInPageControllerProvider.notifier).findAll(text: text);
FindInPageAction((text) async {
await ref
.read(findInPageControllerProvider.notifier)
.findAll(text: text);
}),
ShareAction((text) async {
await SharePlus.instance.share(ShareParams(text: text));