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
@@ -101,7 +101,11 @@ class TrackingProtectionExceptionsScreen extends HookConsumerWidget {
.read(trackingProtectionRepositoryProvider.notifier)
.removeAllExceptions();
} catch (e, s) {
logger.e('Failed to delete tracking protection exceptions', error: e, stackTrace: s);
logger.e(
'Failed to delete tracking protection exceptions',
error: e,
stackTrace: s,
);
if (context.mounted) {
showErrorMessage(context, 'Failed to delete exceptions: $e');
}
@@ -119,7 +123,11 @@ class TrackingProtectionExceptionsScreen extends HookConsumerWidget {
.read(trackingProtectionRepositoryProvider.notifier)
.removeExceptionByUrl(exception.url);
} catch (e, s) {
logger.e('Failed to remove tracking protection exception', error: e, stackTrace: s);
logger.e(
'Failed to remove tracking protection exception',
error: e,
stackTrace: s,
);
if (context.mounted) {
showErrorMessage(context, 'Failed to remove exception: $e');
}