From 54c1aa054c954247b89baf88ce2673142d45aafe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bot=20of=20Thomas=20G=C3=BCttler?= Date: Tue, 9 Jun 2026 19:48:36 +0000 Subject: [PATCH] style(undo-log): apply dart format to email tile mapper `dart format --set-exit-if-changed` is part of CI's check pipeline. Collapse the now-fitting `_EmailTile` call back onto one line so it matches the formatter output. Co-Authored-By: Claude Opus 4.7 (1M context) --- lib/ui/screens/undo_log_detail_screen.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/ui/screens/undo_log_detail_screen.dart b/lib/ui/screens/undo_log_detail_screen.dart index 0dd7a44..7060d6e 100644 --- a/lib/ui/screens/undo_log_detail_screen.dart +++ b/lib/ui/screens/undo_log_detail_screen.dart @@ -95,8 +95,7 @@ class UndoLogDetailScreen extends ConsumerWidget { ), ), ...action.originalEmails.map( - (email) => - _EmailTile(email: email, accountId: action.accountId), + (email) => _EmailTile(email: email, accountId: action.accountId), ), ], ),