Skip to content

Commit

Permalink
Output the error without breaking the UIs
Browse files Browse the repository at this point in the history
  • Loading branch information
BLKKKBVSIK committed Nov 28, 2023
1 parent 7286a56 commit 007783e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app_center/lib/src/about/about_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class _ContributorView extends ConsumerWidget {
const SizedBox(height: 8),
state.when(
data: (contributors) => _ContributorWrap(contributors),
error: (error, stackTrace) => ErrorWidget(error),
error: (error, stackTrace) => Text(error.toString()),
loading: () => Shimmer.fromColors(
baseColor: light ? kShimmerBaseLight : kShimmerBaseDark,
highlightColor:
Expand Down

0 comments on commit 007783e

Please sign in to comment.