Skip to content

Commit

Permalink
Merge pull request ubuntu#1508 from BLKKKBVSIK/fix/no-github-access
Browse files Browse the repository at this point in the history
fix: ErrorWidget breaking the about page UI.
  • Loading branch information
BLKKKBVSIK authored Nov 29, 2023
2 parents 6c4b43c + 007783e commit d4f45b1
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 d4f45b1

Please sign in to comment.