Skip to content

Commit

Permalink
Fix broadcast list screen loading
Browse files Browse the repository at this point in the history
  • Loading branch information
veloce committed Feb 10, 2025
1 parent faf1326 commit 0d19538
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/src/view/broadcast/broadcast_list_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,7 @@ class _BodyState extends ConsumerState<_Body> {
final broadcasts = ref.watch(broadcastsPaginatorProvider);

if (!broadcasts.hasValue && broadcasts.isLoading) {
debugPrint('SEVERE: [BroadcastsListScreen] could not load broadcast tournaments');
return const Center(child: Text('Could not load broadcast tournaments'));
return const Center(child: CircularProgressIndicator.adaptive());
}

final sections = [
Expand Down

0 comments on commit 0d19538

Please sign in to comment.