From 23a8e1f7eabcd11ea11f7f4be9c7b5d2292c8cff Mon Sep 17 00:00:00 2001 From: ggurdin Date: Thu, 5 Sep 2024 15:11:32 -0400 Subject: [PATCH] removes testing print statements --- lib/pages/chat_list/space_view.dart | 2 -- 1 file changed, 2 deletions(-) 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()