diff --git a/lib/pages/chat_list/space_view.dart b/lib/pages/chat_list/space_view.dart index 3a3693576..79dce997f 100644 --- a/lib/pages/chat_list/space_view.dart +++ b/lib/pages/chat_list/space_view.dart @@ -120,7 +120,6 @@ class _SpaceViewState extends State { } Future loadHierarchy({hasUpdate = false}) async { - debugPrint("loading hierarchy. hasUpdate: $hasUpdate"); final room = Matrix.of(context).client.getRoomById(widget.spaceId); if (room == null) return; @@ -564,7 +563,6 @@ class _SpaceViewState extends State { .where((s) => s.hasRoomUpdate) .rateLimit(const Duration(seconds: 1)), builder: (context, snapshot) { - debugPrint("build on room update"); final childrenIds = room.spaceChildren .map((c) => c.roomId) .whereType()