removed print

This commit is contained in:
hannathkadher
2025-03-13 14:51:09 +04:00
parent c39c693755
commit 70d31f5351

View File

@ -518,9 +518,6 @@ class SpaceManagementBloc extends Bloc<SpaceManagementEvent, SpaceManagementStat
CommunityModel? selectedCommunity = communities.firstWhere( CommunityModel? selectedCommunity = communities.firstWhere(
(community) => community.uuid == communityUuid, (community) => community.uuid == communityUuid,
); );
if (selectedCommunity != null) {
print("community name ${selectedCommunity}, spaces ${selectedCommunity.spaces.length}");
}
final parentsToDelete = orderedSpaces.where((space) => final parentsToDelete = orderedSpaces.where((space) =>
space.status == SpaceStatus.deleted && space.status == SpaceStatus.deleted &&
@ -614,8 +611,6 @@ class SpaceManagementBloc extends Bloc<SpaceManagementEvent, SpaceManagementStat
} }
} }
print("tagUpdates ${tagUpdates}");
final response = await _api.updateSpace( final response = await _api.updateSpace(
communityId: communityUuid, communityId: communityUuid,
spaceId: space.uuid!, spaceId: space.uuid!,