diff --git a/lib/features/connections/widget/base/render_stream_list.dart b/lib/features/connections/widget/base/render_stream_list.dart index 77affd4..647ebf4 100644 --- a/lib/features/connections/widget/base/render_stream_list.dart +++ b/lib/features/connections/widget/base/render_stream_list.dart @@ -182,7 +182,7 @@ class _RenderStreamListState extends State { return StreamBuilder( stream: _stream, builder: (BuildContext context, snapshot) { - if (snapshot.hasError) { + if (snapshot.hasError && (snapshot.data?.isEmpty ?? true) == true) { print(snapshot.error); print(snapshot.stackTrace); return Text("Error: ${snapshot.error}");