run formatter

This commit is contained in:
Fabian Freund
2026-01-21 11:25:56 +01:00
parent dc4a5a9c85
commit baf19eed99
19 changed files with 231 additions and 109 deletions
+10 -2
View File
@@ -110,10 +110,18 @@ class _MainWidget extends HookConsumerWidget {
engineSettings.addonCollection,
);
} on PlatformException catch (e, s) {
logger.e('Platform exception during Gecko initialization', error: e, stackTrace: s);
logger.e(
'Platform exception during Gecko initialization',
error: e,
stackTrace: s,
);
rethrow;
} catch (e, s) {
logger.e('Failed to initialize Gecko browser service', error: e, stackTrace: s);
logger.e(
'Failed to initialize Gecko browser service',
error: e,
stackTrace: s,
);
rethrow;
}