Skip to content

Commit ebee66b

Browse files
committed
style: format
1 parent a086895 commit ebee66b

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

lib/headlines-search/view/headlines_search_page.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,5 +462,4 @@ class _HeadlinesSearchViewState extends State<_HeadlinesSearchView> {
462462
),
463463
);
464464
}
465-
466465
}

lib/settings/view/settings_page.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ class SettingsPage extends StatelessWidget {
5454
// Handle error state
5555
if (state.status == SettingsStatus.failure) {
5656
return FailureStateWidget(
57-
exception: state.error as HtHttpException? ??
57+
exception:
58+
state.error as HtHttpException? ??
5859
const UnknownException('An unknown error occurred'),
5960
onRetry: () {
6061
// Access AppBloc to get the current user ID for retry

lib/shared/widgets/headline_tile_image_start.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ class HeadlineTileImageStart extends StatelessWidget {
6565
return ColoredBox(
6666
color: colorScheme.surfaceContainerHighest,
6767
child: const Center(
68-
child: CircularProgressIndicator(
69-
strokeWidth: 2,
70-
),
68+
child: CircularProgressIndicator(strokeWidth: 2),
7169
),
7270
);
7371
},

0 commit comments

Comments
 (0)